]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/TestDefinition.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 / TestDefinition.java
1 package org.argeo.slc.core.test;
2
3 /**
4 * The programmatic definition of a test, which will be associated with
5 * transient objects within a test run.
6 */
7 public interface TestDefinition extends TestStatus {
8 /** Performs the test. */
9 public void execute(TestRun testRun);
10 }