public interface TestableNode
Modifier and Type | Method and Description |
---|---|
void |
runTests(TestType... testTypes)
The method runs the tests specified by the test type from within the current TestableNode.
|
TypedTestPack |
testType(java.lang.String type)
The method retrieves the available
TypedTestPack of specified type (unit, acceptance, integration or performance)
from within the current TestableNode. |
java.util.List<TypedTestPack> |
testTypes()
The method retrieves the available test types from within the current TestableNode.
|
void runTests(TestType... testTypes)
testTypes
- may be at least one of the following: UT (unit tests), AT (acceptance tests), IT (integration tests) or PT (performance
tests)java.util.List<TypedTestPack> testTypes()
TypedTestPack
showing the location and name of the tests available.TypedTestPack testType(java.lang.String type)
TypedTestPack
of specified type (unit, acceptance, integration or performance)
from within the current TestableNode.type
- may be one of the following: UT (unit tests), AT (acceptance tests), IT (integration tests) or PT (performance
tests)TypedTestPack
object showing the location and name of the test pack available.