public class SampleNativeAsyncBareTestCase {
static Node node;
@BeforeClass
public static void setUp() throws Exception {
final NodeFactory nf = NodeFactory.newInstance();
String here = SampleNativeAsyncBareTestCase.class.getProtectionDomain().getCodeSource().getLocation().toString();
// Create the node using the pattern "name of composite file to start" / Contribution to use
node = nf.createNode("testnativeasyncbare.composite", new Contribution("test", here));
node.start();
}