during unit testing,which one of the following providing non local data structure to the unit Under test for accessing
a. stub
b. drivers
c. both stub and drivers
d. test case
Answers
Answered by
0
During unit testing both stub and drivers provide non local data structures for accessing.
Option (c)
Explanation:
- Unit Testing is the first level of testing, also called as the module testing. Unit level testing is usually done by the developer.
- Both Stub and Drivers are independent dummy programs that help in unit testing. Stubs and drivers are created so that the programs may be tested when the dependent or the main programs are still under construction.
- Stubs allow a program to be tested when a dependent program is not yet ready. They have top-down approach.
- Drivers allow a program to be testing when it's main program is under construction and hence follow bottom up approach.
To know more about testing tools visit :
https://brainly.in/question/7532972
Similar questions