mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
18 lines
336 B
PHP
18 lines
336 B
PHP
<?php
|
|
|
|
use App\Billing\StripePaymentGateway;
|
|
use App\Billing\PaymentFailedException;
|
|
|
|
/**
|
|
* @group integration
|
|
*/
|
|
class StripePaymentGatewayTest extends TestCase
|
|
{
|
|
use PaymentGatewayContractTests;
|
|
|
|
protected function getPaymentGateway()
|
|
{
|
|
return new StripePaymentGateway(config('services.stripe.secret'));
|
|
}
|
|
}
|