summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.5/stest/sampleTest/src/test/java/client/TestConfiguration.java
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-1.5/stest/sampleTest/src/test/java/client/TestConfiguration.java')
-rw-r--r--branches/sca-java-1.5/stest/sampleTest/src/test/java/client/TestConfiguration.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/branches/sca-java-1.5/stest/sampleTest/src/test/java/client/TestConfiguration.java b/branches/sca-java-1.5/stest/sampleTest/src/test/java/client/TestConfiguration.java
new file mode 100644
index 0000000000..6a2873b459
--- /dev/null
+++ b/branches/sca-java-1.5/stest/sampleTest/src/test/java/client/TestConfiguration.java
@@ -0,0 +1,27 @@
+package client;
+
+/**
+ * A class to hold the metadata about the test
+ * @author MikeEdwards
+ *
+ */
+class TestConfiguration {
+
+ public String testName;
+ public String input;
+ public String output;
+ public String composite;
+ public String testServiceName;
+ public Class<?> testClass; //TODO - does the client need this??
+ public Class<?> serviceInterface;
+
+ public TestConfiguration() { }
+
+ public String getTestName() { return testName; }
+ public String getInput() { return input; }
+ public String getExpectedOutput() { return output; }
+ public String getComposite() { return composite; }
+ public String getTestServiceName() { return testServiceName; }
+ public Class<?> getTestClass() { return testClass; }
+ public Class<?> getServiceInterface() { return serviceInterface; }
+} \ No newline at end of file