Refactor Argeo API
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / test / TestRun.java
diff --git a/org.argeo.slc.api/src/org/argeo/slc/test/TestRun.java b/org.argeo.slc.api/src/org/argeo/slc/test/TestRun.java
deleted file mode 100644 (file)
index a3e8aeb..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package org.argeo.slc.test;
-
-import org.argeo.slc.deploy.DeployedSystem;
-
-/** The actual run of a test */
-public interface TestRun {
-       /** Gets UUID */
-       public String getUuid();
-
-       /** Gets the related test definition. */
-       public <T extends TestDefinition> T getTestDefinition();
-
-       /** Gets the related test data */
-       public <T extends TestData> T getTestData();
-
-       /** Gets the related deployed system. */
-       public <T extends DeployedSystem> T getDeployedSystem();
-
-       /** Gets the related result where to record results. */
-       public <T extends TestResult> T getTestResult();
-}