2015-12-06 13:58:49 -05:00
|
|
|
<?php
|
|
|
|
|
2017-06-13 23:25:37 -05:00
|
|
|
namespace Tests;
|
2015-12-06 13:58:49 -05:00
|
|
|
|
2017-06-13 23:25:37 -05:00
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
2015-12-06 13:58:49 -05:00
|
|
|
|
2017-06-13 23:25:37 -05:00
|
|
|
abstract class TestCase extends BaseTestCase
|
|
|
|
{
|
|
|
|
use CreatesApplication, DatabaseTransactions;
|
2015-12-06 13:58:49 -05:00
|
|
|
}
|