X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Ftest%2FTestResult.java;fp=org.argeo.slc%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Ftest%2FTestResult.java;h=0000000000000000000000000000000000000000;hb=faf680e212bf3e18837c4f798587856e061273b3;hp=860fe1caf5bb46deb584c03024f1106854c8264d;hpb=5764eb4717599e8df700094e7f0360a155e2a3bb;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc/src/main/java/org/argeo/slc/core/test/TestResult.java b/org.argeo.slc/src/main/java/org/argeo/slc/core/test/TestResult.java deleted file mode 100644 index 860fe1caf..000000000 --- a/org.argeo.slc/src/main/java/org/argeo/slc/core/test/TestResult.java +++ /dev/null @@ -1,24 +0,0 @@ -package org.argeo.slc.core.test; - -import java.util.Date; - -/** The result of a test */ -public interface TestResult { - /** Gets the id of the related test result. */ - public TestResultId getTestResultId(); - - /** Adds a part of the result. */ - public void addResultPart(TestResultPart part); - - /** - * Marks that the collection of test results is completed and free the - * related resources (also closing listeners). - */ - public void close(); - - /** - * The date when this test result was closed. Can be null, which means the - * result is not closed. - */ - public Date getCloseDate(); -}