Esempio n. 1
0
 /**
  * @covers Pants\Task\Execute::getCommand
  * @covers Pants\Task\Execute::setCommand
  */
 public function testCommandCanBeSet()
 {
     $this->task->setCommand('asdf');
     $this->assertEquals('asdf', $this->task->getCommand());
 }