Joined
Last Seen
-3 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 1
0 Endorsements
Ranked #72.8K
2 Posted Topics
Unit testing is testing that is designed to verify individual modules (functions, classes, etc.) at a low level, to verify that module is behaving as specified. You usually use stubs or mock objects in unit tests, which keep the module isolated and do not rely on all of the other …
Re: System testing
**Why system testing is required:** It is the first level of software testing where the software / application is tested as a whole. It is done to verify and validate the technical, business, functional and non-functional requirements of the software. It also includes the verification & validation of software application …
The End.
Robert_96