]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/src/main/java/org/argeo/slc/core/test/TestResultListener.java
Improve unit tests
[gpl/argeo-slc.git] / org.argeo.slc / src / main / java / org / argeo / slc / core / test / TestResultListener.java
1 package org.argeo.slc.core.test;
2
3 /** Listener to the operations on a test result. */
4 public interface TestResultListener {
5 /** Notified when a part was added to a test result. */
6 public void resultPartAdded(TestResult testResult,
7 TestResultPart testResultPart);
8
9 /** Stops listening and release the related resources. */
10 public void close();
11 }