3 use Illuminate\Foundation\Testing\DatabaseTransactions;
4 use Symfony\Component\DomCrawler\Crawler;
6 class TestCase extends Illuminate\Foundation\Testing\TestCase
9 use DatabaseTransactions;
12 * The base URL of the application.
16 public $baseUrl = 'http://localhost';
19 * Creates the application.
21 * @return \Illuminate\Foundation\Application
23 public function createApplication()
25 $app = require __DIR__.'/../bootstrap/app.php';
27 $app->make(Kernel::class)->bootstrap();