what are the differences between stub abd the driver ?
Answers were Sorted based on User's Feedback
Answer / sindhuja rao
Test driver is a s/w component or module used to test the
submodule in the absence of main module.
Test stub is a dummy module to receive calls from main
module.It is used to test the main module in the absence of
sub module
| Is This Answer Correct ? | 9 Yes | 2 No |
STUB:while intergrating all the modules in top to bottm
approach whenever any mandatory module is missing that
module is replaced by a temperoary program which is called
as stub.
DRIVER:while integrating all the modules in bottom to top
approach whenever any mandatory module is missing that
module is replaced by a temperoary program which is called
as driver.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / neha
Integration testing has diffirent testing techniques.
Top Down,Bottom up,hybrid.
If any submodule is absent in topdown approach then tester
will put a dummy module known as Stub.
If main module is in bottom up testing then we can put a
dummy module at thre place of main module this module known
as Drivers.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / chandra_oracle
Test Driver - A program or test tool used to execute
software against a test case suite.
Stubs - A skeletal or special-purpose implementation of a
software module, used to develop or test a component that
calls or is otherwise dependent on it. After [IEEE].
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / ch.s.m.prasad,kkd
Both are temporary programs while we executing the program
in under constuction. stub is calling program and driver is
a called program.
| Is This Answer Correct ? | 5 Yes | 5 No |
how to execute manual test cases?
What are the cases when you’ll consider to choose automated testing over manual testing?
Can anyone give me an example for positive and negative scenario??
3. How would u test and automate Windows Auto-Update featur
differentiate between QA and QC?
what are the ways to crash an application when it is unter testing?
what are the advantages of manual and automation testing ? and which one would u term as efficent testing and effective testing ?pls do reply thankx in advance its urgent
When are the followings prepared: 1.Software Test Plan 2.User Acceptance Test Plan
What is the Myers Boundary Table?
what are the "steps to reproduce" for any bug?
what is verification and Validation?
What is the Stub abd the driver ?Are these both using at the time of Top-up approach of integration testing and bottom-down approach testing .?