]> git.argeo.org Git - gpl/argeo-slc.git/blob - TestRun.java
0135b5d84ac496ad2fe269593904ee00de8f5383
[gpl/argeo-slc.git] / TestRun.java
1 package org.argeo.slc.core.test;
2
3 import org.argeo.slc.core.deploy.DeployedSystem;
4
5 /** The actual run of a test */
6 public interface TestRun {
7 public TestDefinition getTestDefinition();
8
9 public TestData getTestData();
10
11 public DeployedSystem getDeployedSystem();
12
13 public TestResult getTestResult();
14
15 public void execute();
16 }