]> git.argeo.org Git - gpl/argeo-slc.git/blob - test/TestDefinition.java
Prepare next development cycle
[gpl/argeo-slc.git] / 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 }