Updated Branches: refs/heads/master 176acc237 -> da4c153a4
adding the missing imports Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/da4c153a Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/da4c153a Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/da4c153a Branch: refs/heads/master Commit: da4c153a44a0a3ed688e1274f8db73de44651785 Parents: 176acc2 Author: Saminda Wijeratne <[email protected]> Authored: Wed Feb 5 13:13:47 2014 -0800 Committer: Saminda Wijeratne <[email protected]> Committed: Wed Feb 5 13:13:47 2014 -0800 ---------------------------------------------------------------------- .../orchestrator/core/SimpleOrchestratorTest.java | 1 + .../core/TestWithStoredDescriptors.java | 18 ++++++++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/da4c153a/modules/orchestrator/orchestrator-core/src/test/java/org/apache/airavata/orchestrator/core/SimpleOrchestratorTest.java ---------------------------------------------------------------------- diff --git a/modules/orchestrator/orchestrator-core/src/test/java/org/apache/airavata/orchestrator/core/SimpleOrchestratorTest.java b/modules/orchestrator/orchestrator-core/src/test/java/org/apache/airavata/orchestrator/core/SimpleOrchestratorTest.java index 1a8b4c9..b354b5b 100644 --- a/modules/orchestrator/orchestrator-core/src/test/java/org/apache/airavata/orchestrator/core/SimpleOrchestratorTest.java +++ b/modules/orchestrator/orchestrator-core/src/test/java/org/apache/airavata/orchestrator/core/SimpleOrchestratorTest.java @@ -33,6 +33,7 @@ import org.apache.airavata.commons.gfac.type.ApplicationDescription; import org.apache.airavata.commons.gfac.type.HostDescription; import org.apache.airavata.commons.gfac.type.ServiceDescription; import org.apache.airavata.orchestrator.core.model.ExperimentRequest; +import org.apache.airavata.orchestrator.cpi.Orchestrator; import org.apache.airavata.orchestrator.cpi.impl.SimpleOrchestratorImpl; import org.apache.airavata.registry.api.JobRequest; import org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType; http://git-wip-us.apache.org/repos/asf/airavata/blob/da4c153a/modules/orchestrator/orchestrator-core/src/test/java/org/apache/airavata/orchestrator/core/TestWithStoredDescriptors.java ---------------------------------------------------------------------- diff --git a/modules/orchestrator/orchestrator-core/src/test/java/org/apache/airavata/orchestrator/core/TestWithStoredDescriptors.java b/modules/orchestrator/orchestrator-core/src/test/java/org/apache/airavata/orchestrator/core/TestWithStoredDescriptors.java index a75d3e2..5a654b5 100644 --- a/modules/orchestrator/orchestrator-core/src/test/java/org/apache/airavata/orchestrator/core/TestWithStoredDescriptors.java +++ b/modules/orchestrator/orchestrator-core/src/test/java/org/apache/airavata/orchestrator/core/TestWithStoredDescriptors.java @@ -20,6 +20,11 @@ */ package org.apache.airavata.orchestrator.core; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.UUID; + import junit.framework.Assert; import org.apache.airavata.client.AiravataAPIFactory; @@ -33,19 +38,20 @@ import org.apache.airavata.commons.gfac.type.ApplicationDescription; import org.apache.airavata.commons.gfac.type.HostDescription; import org.apache.airavata.commons.gfac.type.ServiceDescription; import org.apache.airavata.orchestrator.core.model.ExperimentRequest; +import org.apache.airavata.orchestrator.cpi.Orchestrator; import org.apache.airavata.orchestrator.cpi.impl.SimpleOrchestratorImpl; import org.apache.airavata.registry.api.JobRequest; -import org.apache.airavata.schemas.gfac.*; +import org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType; +import org.apache.airavata.schemas.gfac.DataType; +import org.apache.airavata.schemas.gfac.InputParameterType; +import org.apache.airavata.schemas.gfac.OutputParameterType; +import org.apache.airavata.schemas.gfac.ParameterType; +import org.apache.airavata.schemas.gfac.StringParameterType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.testng.annotations.BeforeTest; import org.testng.annotations.Test; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.UUID; - public class TestWithStoredDescriptors extends AbstractOrchestratorTest { private static final Logger log = LoggerFactory.getLogger(SimpleOrchestratorTest.class);
