]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/src/main/java/org/argeo/slc/core/test/TestResult.java
Improve unit tests
[gpl/argeo-slc.git] / org.argeo.slc / src / main / java / org / argeo / slc / core / test / TestResult.java
1 package org.argeo.slc.core.test;
2
3 /** The result of a test */
4 public interface TestResult {
5 /** Gets the id of the related test result. */
6 public TestResultId getTestResultId();
7
8 /** Adds a part of the result. */
9 public void addResultPart(TestResultPart part);
10
11 /**
12 * Marks that the collection of test results is completed and free the
13 * related resources (also closing listeners).
14 */
15 public void close();
16 }