1
Reply

What are three test cases you should go through in unit testing?

Jul 14, 2006
6.1k
0

    Positive test cases (correct data, correct output),

    negative test cases (broken or missing data, proper handling),

    exception test cases (exceptions are thrown and caught properly).

    July 14, 2006
    0