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