]> git.argeo.org Git - gpl/argeo-slc.git/blob - SimpleTestRun.java
da6e945c49328774a3bcbec568b96743dab6e88d
[gpl/argeo-slc.git] / SimpleTestRun.java
1 package org.argeo.slc.core.test;
2
3 import org.argeo.slc.core.deploy.DeployedSystem;
4
5 public class SimpleTestRun implements WritableTestRun {
6 private DeployedSystem deployedSystem;
7 private TestData testData;
8 private TestDefinition testDefinition;
9 private TestResult testResult;
10
11 public void execute(){
12 testDefinition.execute(this);
13 }
14
15 public DeployedSystem getDeployedSystem() {
16 return deployedSystem;
17 }
18
19 public void setDeployedSystem(DeployedSystem deployedSystem) {
20 this.deployedSystem = deployedSystem;
21 }
22
23 public TestData getTestData() {
24 return testData;
25 }
26
27 public void setTestData(TestData testData) {
28 this.testData = testData;
29 }
30
31 public TestDefinition getTestDefinition() {
32 return testDefinition;
33 }
34
35 public void setTestDefinition(TestDefinition testDefinition) {
36 this.testDefinition = testDefinition;
37 }
38
39 public TestResult getTestResult() {
40 return testResult;
41 }
42
43 public void setTestResult(TestResult testResult) {
44 this.testResult = testResult;
45 }
46
47 }