Files
Speedtest-Tracker/tests/CreatesApplication.php
Henry Whitaker 0062ac6960 Added base app
Has basic login UI, has methods to run speedtests
2020-04-08 13:57:26 +01:00

23 lines
380 B
PHP

<?php
namespace Tests;
use Illuminate\Contracts\Console\Kernel;
trait CreatesApplication
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make(Kernel::class)->bootstrap();
return $app;
}
}