Testing / Junit Interview questions II
What is JUnitCore class?
org.junit.runner.JUnitCore class is responsible for executing tests. runClasses() method of JUnitCore class enables running the one or more test classes which yield Result Object (org.junit.runner.Result).
The test results will be extracted from the Result Object.
JUnitCore is based on facade design pattern.
More Related questions...