use of ml.duncte123.skybot.commands.uncategorized.HelpCommand in project SkyBot by duncte123.
the class SkybotCommandTest method testCommandGetterForName.
@Test
public void testCommandGetterForName() {
String key = "help";
HelpCommand value = new HelpCommand();
assertEquals("Retrieved command does not match stored command for same key (Name)", value, manager.getCommand(key));
}
Aggregations