controller = new SpeedtestController(); } public function testFail() { $resp = $this->controller->fail(5)->original; $this->assertArrayHasKey('method', $resp); $this->assertArrayHasKey('data', $resp); $this->assertArrayHasKey('days', $resp); } public function testFailInvalidInput() { $resp = $this->controller->fail('test')->original; $this->assertArrayHasKey('method', $resp); $this->assertArrayHasKey('error', $resp); } }