Class-by-class testing is usually called unit-testing. There are several popular tools that can help you. Start from JUnit or TestNG. Implement tests for each class or group of classes (modules) that provide some functionality.
Then you can go up, i.e. write tests for bigger modules and for whole application. Such tests are typically called integration tests.
manpreet
Best Answer
2 years ago
How is white box testing done on java applications? Does it mean that I have to test class by class?
From my research I know that:
What should the white box testing look like?