X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.api.slc%2Fsrc%2Forg%2Fargeo%2Fapi%2Fslc%2Ftest%2FTestRun.java;fp=org.argeo.api.slc%2Fsrc%2Forg%2Fargeo%2Fapi%2Fslc%2Ftest%2FTestRun.java;h=f0d3b98ad9b52c0503032232c67e02ab2fda2f82;hb=d07cf3c7dfdeafa2b1efafe547b54d56a8b52ced;hp=0000000000000000000000000000000000000000;hpb=8596685647867307b862b8a89742b6a62ba75fcd;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.api.slc/src/org/argeo/api/slc/test/TestRun.java b/org.argeo.api.slc/src/org/argeo/api/slc/test/TestRun.java new file mode 100644 index 000000000..f0d3b98ad --- /dev/null +++ b/org.argeo.api.slc/src/org/argeo/api/slc/test/TestRun.java @@ -0,0 +1,21 @@ +package org.argeo.api.slc.test; + +import org.argeo.api.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(); +}