Unit tests - microsoft solution framework

Define Unit tests

Unit tests involve testing of individual units of code. It is testing mainly performed by developers themselves to check that all the independent units of code have been tested before testing combination of units. Unit test is the lowest level of testing and tests the smallest piece of a system. Its main objective is to verify that the code meets its design specifications and behave as expected.
Post your comment