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

11 lines
163 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}