InterviewSolution
Saved Bookmarks
| 1. |
Do you need to write a test class for every class that needs to be tested? |
|
Answer» No. We need not write an independent test class for every class that needs to be tested. If there is a small group of tests sharing a common test fixture, you may move those tests to a new test class. |
|