Files
ticketbeast/tests/unit/Billing/StripePaymentGatewayTest.php
2017-01-18 19:08:49 -05:00

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'));
}
}