Added v1.12.0 files

This commit is contained in:
Henry Whitaker
2021-04-11 09:23:18 +01:00
parent e68d360274
commit 1c8017f902
74 changed files with 951 additions and 72 deletions

View File

@@ -6,6 +6,7 @@ use App\Exceptions\SpeedtestFailureException;
use App\Helpers\SpeedtestHelper;
use App\Utils\OoklaTester;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\Mocks\OoklaTesterMocker;
use Tests\TestCase;
class SpeedtestTest extends TestCase
@@ -22,17 +23,7 @@ class SpeedtestTest extends TestCase
$this->speedtestProvider = new OoklaTester();
$this->output = $this->speedtestProvider->output();
}
/**
* A basic unit test example.
*
* @return void
*/
public function testOutputFunction()
{
$this->assertJson($this->output);
$this->output = (new OoklaTesterMocker())->output();
}
/**