예제 #1
0
파일: CommandTest.php 프로젝트: devster/ika
 public function testGetNameSetName()
 {
     $name = 'mycommand';
     $name2 = 'othername';
     $command = new Command($name);
     $this->assertEquals($name, $command->getName());
     $command->setName($name2);
     $this->assertEquals($name2, $command->getName());
 }