Configuring and using JUnit for unit testing
JUnit is a unit testing framework for Java code. Unit testing refers to programmatically testing individual pieces of code and it is actually part of the software development and construction process. In JDeveloper, JUnit is supported via the BC4J JUnit Integration and JUnit Integration extensions available through the Official Oracle Extensions and Updates update center. The BC4J JUnit Integration extension makes available wizards for constructing JUnit unit test cases, suites, and fixtures specifically for business components projects. On the other hand, the JUnit Integration extension includes wizards to help you setup generic JUnit artifacts. Upon installation, these extensions make available the Unit Tests category under the General category in the New Gallery dialog.
A unit test class is a class that contains unit test methods. Unit test classes are grouped in a test suite that runs all of the test cases together when executed. A unit...