示例#1
0
文件: agent.php 项目: wushian/MDD
 /**
  * Tests Agent::platform()
  *
  * @test
  */
 public function test_platform()
 {
     $expected = "Linux";
     $output = Agent::platform();
     $this->assertEquals($expected, $output);
 }