use of org.eclipse.ceylon.ceylondoc.CeylonDocTool in project ceylon by eclipse.
the class DocToolTests method testDocSourceCode.
@Test
public void testDocSourceCode() throws Exception {
ToolModel<CeylonDocTool> model = pluginLoader.loadToolModel("doc");
Assert.assertNotNull(model);
CeylonDocTool tool = pluginFactory.bindArguments(model, getMainTool(), toolOptions("--source-code", "--src=test/src", "org.eclipse.ceylon.tools.test.ceylon"));
tool.run();
}
use of org.eclipse.ceylon.ceylondoc.CeylonDocTool in project ceylon by eclipse.
the class DocToolTests method testDocMultiple.
@Test
public void testDocMultiple() throws Exception {
ToolModel<CeylonDocTool> model = pluginLoader.loadToolModel("doc");
Assert.assertNotNull(model);
CeylonDocTool tool = pluginFactory.bindArguments(model, getMainTool(), toolOptions("--src=test/src", "org.eclipse.ceylon.tools.test.multiple.*"));
tool.run();
}
use of org.eclipse.ceylon.ceylondoc.CeylonDocTool in project ceylon by eclipse.
the class DocToolTests method testDoc.
@Test
public void testDoc() throws Exception {
ToolModel<CeylonDocTool> model = pluginLoader.loadToolModel("doc");
Assert.assertNotNull(model);
CeylonDocTool tool = pluginFactory.bindArguments(model, getMainTool(), toolOptions("--src=test/src", "org.eclipse.ceylon.tools.test.ceylon"));
tool.run();
}
Aggregations