Package com.avoka.tm.test
Class JUnitTestRunner
java.lang.Object
com.avoka.tm.test.JUnitTestRunner
Provides a runner utility for unit testing.
- Since:
- 5.1.4
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic org.junit.runner.Result
runTests
(AbstractJUnitTest junitTestInstance) Run unit test methods (annotated withTest
) in junit test instance.static org.junit.runner.Result
Run unit test methods (annotated withTest
) in junit test class.
-
Method Details
-
runTests
Run unit test methods (annotated withTest
) in junit test instance.- Parameters:
junitTestInstance
- junit test instance with unit test methods- Returns:
- result with collected and summarized successful information from running multiple tests
-
runTests
Run unit test methods (annotated withTest
) in junit test class.- Parameters:
junitTestClass
- junit test class with unit test methods- Returns:
- result with collected and summarized information from running multiple tests
-