Example #1
0
$t->is($command1->hasShortcut(':f'), true, '->hasShortcut() is true with ":f"');
$t->is($command1->hasShortcut('b'), false, '->hasShortcut() is true with "b"');
$t->is($command1->hasShortcut(':b'), false, '->hasShortcut() is true with ":b"');
$t->is($command2->hasShortcut('n:b'), true, '->hasShortcut() is true with "n:b"');
$t->is($command2->hasShortcut('ns:b'), true, '->hasShortcut() is true with "ns:b"');
$t->is($command2->hasShortcut('b'), true, '->hasShortcut() is true with "b"');
$t->is($command2->hasShortcut(':b'), true, '->hasShortcut() is true with ":b"');
$t->is($command2->hasShortcut('ns:d'), false, '->hasShortcut() is true with "ns:d"');
$t->comment('nbCommandTest - Test brief description');
$command = new DummyCommand('foo');
$t->is($command->getBriefDescription(), '', '->getBriefDescrition() is ""');
$command->setBriefDescription('command brief description');
$t->is($command->getBriefDescription(), 'command brief description', '->getBriefDescrition() is "command brief description"');
$t->comment('nbCommandTest - Test detailed description');
$command = new DummyCommand('foo');
$t->is($command->getDescription(), '', '->getDescription() is ""');
$command->setDescription('command description');
$t->is($command->getDescription(), 'command description', '->getDescription() is "command description"');
$t->comment('nbCommandTest - Test aliases');
$command = new DummyCommand("foo");
$t->ok(!$command->hasAliases(), '->hasAliases() returns false');
$t->ok(!$command->hasAlias('f'), '->hasAlias() returns false');
$command->setAlias('f');
$t->ok($command->hasAliases(), '->hasAliases() returns true');
$t->ok($command->hasAlias('f'), '->hasAlias() returns true');
$command = new DummyCommand("foo");
$command->setAliases(array('f', 'fo'));
$t->ok($command->hasAliases(), '->setAliases() sets 2 alias');
$t->ok($command->hasAlias('f'), '->hasAlias() returns true');
$t->ok($command->hasAlias('fo'), '->hasAlias() returns true');
try {