Example #1
0
 public function testShouldRemoveCommandPrefixOnConstructor()
 {
     $action = new Command('echo', array(), false);
     $actualCommand = $action->getCommand();
     $expectedCommand = 'echo';
     $this->assertEquals($expectedCommand, $actualCommand);
 }