]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/TestRun.java
073acb5b2023dd3f3cdd60c37cd5aec314eb17fd
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / test / 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 /** Gets the related test definition. */
8 public TestDefinition getTestDefinition();
9
10 /** Gets the related test data */
11 public TestData getTestData();
12
13 /** Gets the related deployed system. */
14 public DeployedSystem getDeployedSystem();
15
16 /** Gets the related result where to record results. */
17 public TestResult getTestResult();
18 }