31323334353637
DomainNode node; @Before public void setUp() throws Exception { node = new DomainNode("../../../samples/helloworld/target/sample-helloworld.zip"); }
3233343536373839
private static DomainNode node; @BeforeClass public static void setUpBeforeClass() throws Exception { node = new DomainNode(); node.addContribution("../helloworld/target/itest-domains-helloworld.zip"); }
62636465666768697071
StringTokenizer st = new StringTokenizer(contributions, ","); while (st.hasMoreTokens()) { cs.add(st.nextToken()); } DomainNode domainNode = new DomainNode(domain, cs.toArray(new String[cs.size()])); waitForShutdown(domainNode, getLog()); }