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. 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. |
|