Merge tag 'v2.3.15' into testing
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / test / TestResult.java
diff --git a/org.argeo.slc.api/src/org/argeo/slc/test/TestResult.java b/org.argeo.slc.api/src/org/argeo/slc/test/TestResult.java
deleted file mode 100644 (file)
index 767b286..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package org.argeo.slc.test;
-
-import java.util.Date;
-import java.util.Map;
-
-/** The result of a test */
-public interface TestResult extends TestStatus, TestRunAware {
-       public String getUuid();
-
-       /** 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();
-
-       /** Additional arbitrary meta data */
-       public Map<String, String> getAttributes();
-}