]> git.argeo.org Git - gpl/argeo-slc.git/blob - TestDefinition.java
77ee482807732546dfb77534bb6c3ba8e948eca4
[gpl/argeo-slc.git] / 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 {
8 /** Performs the test. */
9 public void execute(TestRun testRun);
10 }