コード例 #1
0
 public function testHasShortcut()
 {
     $this->initializeOptions();
     $definition = new InputDefinition(array($this->foo));
     $this->assertTrue($definition->hasShortcut('f'), '->hasShortcut() returns true if a InputOption exists for the given shortcut');
     $this->assertFalse($definition->hasShortcut('b'), '->hasShortcut() returns false if a InputOption exists for the given shortcut');
 }