]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/TestResult.java
Integrate Slc Execution notification in the new runtime
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / test / TestResult.java
1 package org.argeo.slc.core.test;
2
3 import java.util.Date;
4
5 /** The result of a test */
6 public interface TestResult extends TestStatus, TestRunAware {
7 public String getUuid();
8
9 /** Adds a part of the result. */
10 public void addResultPart(TestResultPart part);
11
12 /**
13 * Marks that the collection of test results is completed and free the
14 * related resources (also closing listeners).
15 */
16 public void close();
17
18 /**
19 * The date when this test result was closed. Can be null, which means the
20 * result is not closed.
21 */
22 public Date getCloseDate();
23 }