.addAsResource("tooling/arquillian.xml", ArchivePaths.create("resource2.xml"))
.addAsResource(new File("src/test/resources/tooling/arquillian.xml").toURI().toURL(),
ArchivePaths.create("resource3.xml")).addClass(ToolingDeploymentFormatterTestCase.class)
.addAsServiceProvider(ServiceLoader.class, DynamicServiceLoader.class)
.addAsLibrary(ShrinkWrap.create(JavaArchive.class, "test.jar").addClass(ToolingDeploymentFormatter.class))
.toString(new ToolingDeploymentFormatter(getClass()));
// TODO: do some output Assertions..
Assert.assertNotNull(content);
System.out.println(content);
}