Exemplo n.º 1
0
 public function testDefaultCommandArgsIsEmptyList()
 {
     // setup
     $obj = new DummyCommand();
     // do the test
     $definedArgs = $obj->getCommandArgs();
     // test the results
     $this->assertTrue(is_array($definedArgs));
     $this->assertEquals(0, count($definedArgs));
 }