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