The difference between debugging and testing

Debugging and testing are summarized as follows difference

1. Purpose: The purpose of testing is to find the problem, the purpose of debugging is to find and fix the problem.
2, staff: the test is completed by a dedicated testers, testing completed by the developer.
3. Results: The test begins with the known conditions, using pre-defined process, and there is the expected result; and debugging condition unknown, unpredictable results.
4, process: the test can plan ahead, you can develop test cases and plans, progress can be measured; debugging no plan, no progress can be measured.
5, stage: testing throughout the entire software life cycle stages; debugging only during the coding phase.

Published 59 original articles · won praise 6 · views 10000 +

Guess you like

Origin blog.csdn.net/qq_27009225/article/details/103492165