use of com.redhat.ceylon.common.tools.help.CeylonHelpTool in project ceylon-compiler by ceylon.
the class HelpToolTests method testHelpHelp.
@Test
public void testHelpHelp() {
ToolModel<CeylonHelpTool> model = pluginLoader.loadToolModel("help");
Assert.assertNotNull(model);
CeylonHelpTool tool = pluginFactory.bindArguments(model, getMainTool(), Arrays.asList("help"));
tool.run();
}
use of com.redhat.ceylon.common.tools.help.CeylonHelpTool in project ceylon-compiler by ceylon.
the class HelpToolTests method testHelpDoc.
@Test
public void testHelpDoc() {
ToolModel<CeylonHelpTool> model = pluginLoader.loadToolModel("help");
Assert.assertNotNull(model);
CeylonHelpTool tool = pluginFactory.bindArguments(model, getMainTool(), Arrays.asList("doc"));
tool.run();
}
Aggregations