/** * Tests Agent::platform() * * @test */ public function test_platform() { $expected = "Linux"; $output = Agent::platform(); $this->assertEquals($expected, $output); }