mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-02-07 21:50:30 +00:00
100 - Namespacing Our Test Suite
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Unit\Billing;
|
||||
|
||||
use Tests\TestCase;
|
||||
use App\Billing\FakePaymentGateway;
|
||||
use App\Billing\PaymentFailedException;
|
||||
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
||||
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
||||
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||
|
||||
class FakePaymentGatewayTest extends TestCase
|
||||
{
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Unit\Billing;
|
||||
|
||||
use App\Billing\PaymentFailedException;
|
||||
|
||||
trait PaymentGatewayContractTests
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Unit\Billing;
|
||||
|
||||
use Tests\TestCase;
|
||||
use App\Billing\StripePaymentGateway;
|
||||
use App\Billing\PaymentFailedException;
|
||||
|
||||
/**
|
||||
* @group integration
|
||||
|
||||
Reference in New Issue
Block a user