summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.5/stest/sampleTest/src/test/java/client/TestConfiguration.java
blob: 6a2873b459510990a65657358f1db20e28988fd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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; }
}