2.3-testing Flashcards
1
Q
what is the purpose for testing?
A
To become robust so that the program can handle almost anything that a user throws at it.
2
Q
What is destructive testing?
A
You must try and break your program. This is called destructive testing.
3
Q
What is iterative testing?
A
Iterative testing involves testing each module or section
of your code as it is developed.
By going through your code in modules you are able to
see if the module works on its own. You can see if it interacts
with other parts that have been introduced.
4
Q
what is terminal testing?
A
Terminal testing focuses on whether the system works as a
whole. You do not focus on each module.