<?phpclassTestCaseextendsIlluminate\Foundation\Testing\TestCase{/** * The base URL to use while testing the application. * * @var string */protected$baseUrl='http://localhost';/** * Creates the application. * * @return \Illuminate\Foundation\Application */publicfunctioncreateApplication(){$app=require__DIR__.'/../bootstrap/app.php';$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();return$app;}}