How would you conduct a test: top-down or down-top? What is it? Which one is better?
Down-Top: unit -> interface -> system. Top-Down is a vice versa. You may use both, but down-top allows to discover malfunctioning at earlier phases of development and cheaper to fix than in the case of top-down.
RE: How would you conduct a test: top-down or down-top...
Top-down and bottom-up are integration approach not testing approach.It depends on application which one is better to use generally we use combination of both.
RE: How would you conduct a test: top-down or down-top...
This concept comes in the integration testing the perpouse of integration testing is combing deffirant modules in our project and cheek the funcationality
In top - down approach testing is conducted from main moduel to sub moduel
In bottom - up appoch testing is conducted from submoduel to main moduel
RE: How would you conduct a test: top-down or down-top...
Bottom-up and Top-Down are used in performing incremental integration testing. In Bottom-up we start the testing from the terminal module (that do not call any other sub module) a driver is produced for every module. Next module to be tested is any module who has previously tested sub ordinate module. In Top-Down we start the testing from the top most module a stub is produced for every module. Next module to be tested is any module who has preveously tested super ordinate module.