Tag Archives: top down testing

Testing Stubs & Drivers

Stubs

It is not possible to test a single function by itself; is it? It must be called by something (if it is not the main program) and it may have calls to other modules, which are not there as of now.

If a function includes calls to other modules, dummy procedures known as stubs can be written to satisfy those calls. read more »