ENCYCLOPEDIA 4U .com



Encyclopedia Home Page

Google
  Web Encyclopedia4u.com

 

Unit test

In computer programming, a unit test is a method of testing a source code module, preferably before the module to be tested is implemented.

The idea is to write test cases for every function or method in the module so that each test case is separate from others if possible. After completion of the unit test it is easy to check if the module is working properly. Unit testing also allows the programmer to refactor code at a later date, and make sure the module still works correctly (regression testing).

The unit testing concept is part of the Extreme Programming method of software engineering. Various unit testing frameworks, based on a design by Kent Beck, have come to be known as xUnit testing frameworks and are available for many programming languages and development platforms. Unit testing is related to test driven development (TDD).

See also

External links





Content on this web site is provided for informational purposes only. We accept no responsibility for any loss, injury or inconvenience sustained by any person resulting from information published on this site. We encourage you to verify any critical information with the relevant authorities.



Copyright © 2005 Par Web Solutions All Rights reserved.
| Privacy

This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Unit test".