Interview Questions

What's fuzz testing ?

Software QA/Testing Technical FAQs


(Continued from previous question...)

What's fuzz testing ?

Fuzz testing is a software testing technique. The basic idea is to attach the inputs of a program to a source of random data. If the program fails (for example, by crashing, or by failing built-in code assertions), then there are defects to correct.
The great advantage of fuzz testing is that the test design is extremely simple, and free of preconceptions about system behavior

(Continued on next question...)

Other Interview Questions