options.setFileType(FileType.PUPPET_ROOT);
// Write the dot to a file:
File outputFolder = TestDataProvider.getTestOutputDir();
FileOutputStream dotStream = new FileOutputStream(new File(outputFolder, "forgeGraphSVG.dot"));
BuildResult buildResult = vs.validate(chain, root, options, null, SubMonitor.convert(null));
getDependencyGraphProducer().produceGraph(
null, "Forge DefaultModules Dependencies", null, dotStream, buildResult, chain);
// produce SVG
SVGProducer svgProducer = getSVGProducer();