X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Ftest%2FTestRun.java;fp=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Ftest%2FTestRun.java;h=0000000000000000000000000000000000000000;hb=09c9e5093fe1353aaac344ac8a8caf2e1dcc0778;hp=a3e8aeb5a01910ca9eb75fa30082addc00d18012;hpb=8ff996a3380166be2ae9cf0ef0fa22c58e11746a;p=gpl%2Fargeo-slc.git 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 index a3e8aeb5a..000000000 --- a/org.argeo.slc.api/src/org/argeo/slc/test/TestRun.java +++ /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 getTestDefinition(); - - /** Gets the related test data */ - public T getTestData(); - - /** Gets the related deployed system. */ - public T getDeployedSystem(); - - /** Gets the related result where to record results. */ - public T getTestResult(); -}