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, 0 insertions, 27 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
deleted file mode 100644
index 6a2873b459..0000000000
--- a/branches/sca-java-1.5/stest/sampleTest/src/test/java/client/TestConfiguration.java
+++ /dev/null
@@ -1,27 +0,0 @@
-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