]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.api/src/org/argeo/slc/test/TestDefinition.java
Improve SWT packaging
[gpl/argeo-slc.git] / org.argeo.slc.api / src / 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 }