]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/test/TestDefinition.java
Provisioning
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / test / TestDefinition.java
1 package org.argeo.slc.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 }