public interface Grounding
Modifier and Type | Method and Description |
---|---|
void |
groundTestSequence(TestSequence sequence)
Intermediate grounding method.
|
void |
groundTestStep(TestStep testStep)
Low level grounding method.
|
void |
groundTestSuite(TestSuite testSuite)
Top level grounding method.
|
void |
setMetaCheck(boolean value)
Selects whether to test the full state and transition behaviour (when
true), or just the return values (when false) of the tested service.
|
void |
useEndpoint(java.lang.String serviceURI)
Tells this Grounding to use the given root URI as the endpoint for the
service (optional).
|
void |
useSourcePackage(java.lang.String packageInfo)
Sets the name of the source package for the System-Under-Test.
|
void |
useTargetPackage(java.lang.String packageInfo)
Sets the name of the target package for the generated Test Driver class.
|
void groundTestSuite(TestSuite testSuite)
testSuite
- the high-level test suite.void groundTestSequence(TestSequence sequence)
sequence
- the high-level test sequence.void groundTestStep(TestStep testStep)
testStep
- the high-level test step.void useTargetPackage(java.lang.String packageInfo)
packageInfo
- the Test Driver package name.void useSourcePackage(java.lang.String packageInfo)
packageInfo
- the Service-Under-Test package name.void useEndpoint(java.lang.String serviceURI)
serviceURI
- the root URI of the service.void setMetaCheck(boolean value)
value
- true, or false.