use of com.redhat.ceylon.ceylondoc.CeylonDocTool in project ceylon-compiler by ceylon.
the class DocToolTests method testDocNonShared.
@Test
public void testDocNonShared() throws Exception {
ToolModel<CeylonDocTool> model = pluginLoader.loadToolModel("doc");
Assert.assertNotNull(model);
CeylonDocTool tool = pluginFactory.bindArguments(model, getMainTool(), options("--non-shared", "--src=test/src", "com.redhat.ceylon.tools.test.ceylon"));
tool.run();
}
Aggregations