]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/TestResult.java
Replace test result id by UUID
[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 {
7 /** Adds a part of the result. */
8 public void addResultPart(TestResultPart part);
9
10 /**
11 * Marks that the collection of test results is completed and free the
12 * related resources (also closing listeners).
13 */
14 public void close();
15
16 /**
17 * The date when this test result was closed. Can be null, which means the
18 * result is not closed.
19 */
20 public Date getCloseDate();
21 }