コード例 #1
0
 public function testGetCommand()
 {
     $cmd = new Command('foo');
     $helperset = new HelperSet();
     $helperset->setCommand($cmd);
     $this->assertEquals($cmd, $helperset->getCommand(), '->getCommand() retrieves stored command');
 }