InterviewSolution
Saved Bookmarks
| 1. |
What is Junit testing? |
|
Answer» Junit testing is a framework written in Java for providing a standard way of organizing, writing, and RUNNING the tests. An ACCURATE logic of the test can be written following a simple rule. Here, Junit means UNIT testing which implies the meaning as of checking the individual parts of a software SYSTEM WITHOUT the implementation of the entire system from end to end. |
|