In computer programming, unit testing is a procedure used to validate that individual units of source code are working properly. ...
http://en.wikipedia.org/wiki/Unit_testing
|
|
|
Test Each Module individually. It follows White box testing (Logic of the program) Thanks H.Pushkarani Unit testing: Assume there are 100 modules which make up an application/product. there are 100 developers working on the 100 modules. Tes...
http://wiki.answers.com/Q/What_is_unit_testing
|
|
|
The primary goal of unit testing is to take the smallest piece of testable software in the application, isolate it from the remainder of the code, and determine whether it behaves exactly as you expect. Each unit is tested separately before integrating them into modules to test the interfaces between modules.
|
msdn.microsoft.com/en-us/library/aa292197(VS.71).aspx
|
|
|
|
In unit testing, you're just verifying that a single unit works according to expectations. It could be that the user of the unit is manipulating it incorrectly or is expecting different behavior. Testing that all of the components work together correctly is often done separately.
|
starship.python.net/crew/tbryan/UnitTestTalk/slide2.htm...
starship.python.net/crew/tbryan/UnitTestTalk/slide2.html
|
|
|
|
In previous chapters, you “dived in” by immediately looking at code and trying to understand it as quickly as possible. Now that you have some Python under your belt, you're going to step back and look at the steps that happen before ... You are here: Home > Dive Into Python > Unit Testing ... 13.4. Testing for success...
|
diveintopython.org/unit_testing/index.html
diveintopython.org/unit_testing/index.html
|
|
|
Unit Testing: in unit testing called components (or communicating components) are replaced with stubs, simulators, or trusted components. Calling components are replaced with drivers or trusted super-components. The unit is tested in isolation.
|
www.faqs.org/faqs/software-eng/testing-faq/section-14.h...
www.faqs.org/faqs/software-eng/testing-faq/section-14.html
|
|
Should unit testing test the public interface of a class or the private implementation? ... Perhaps I'm really missing the point given Michael Hills comment above in Are we testing too much? about testing privates? I believe unit testing is about testing method implementations not public interfaces, but there doesn't seem...
|
c2.com/cgi/wiki?UnitTest
c2.com/cgi/wiki?UnitTest
|
|
This site is dedicated to software developers and testers using the JUnit testing framework. In addition to the latest news and download links for JUnit, you can find answers to questions about automated testing, tools and extensions for JUnit, and articles on Test Driven Development and other testing topics.
|
www.junit.org/
www.junit.org/
|
|