Submitted Questions

  • Driver and Stub

    With what type of test is a driver and a stub most closely associated?

    Priyank

    • Jun 30th, 2016

    Driver I used in bottom-up integration approach and stub is used in top-down integration approach.
    Driver is a temporary calling Module.
    Stub are special purpose programs, not completely implemented and replaced with original module as integration moves downwards in the application structure.

    Manmohan Garg

    • Jan 11th, 2016

    Driver and Stubs are used in integration testing. It is difficult to track defect in an integrated design. So individual module are tested before they are integrated or as soon as a module is develope...