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