@Test
public void DistributedInstall() throws NoSuchServiceException, NoSuchDomainException, ContributionReadException, ActivationException, ValidationException {
TuscanyRuntime runtime = TuscanyRuntime.newInstance();
try {
Node nodeA = runtime.createNode("uri:DistributedInstall");
nodeA.installContribution("https://repository.apache.org/content/groups/snapshots/org/apache/tuscany/sca/samples/helloworld/2.0-SNAPSHOT/helloworld-2.0-SNAPSHOT.jar");
nodeA.installContribution("src/test/resources/export.jar");
Assert.assertEquals(2, nodeA.getInstalledContributionURIs().size());
Assert.assertTrue(nodeA.getInstalledContributionURIs().contains("export"));