1
Reply

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

18y
6.1k
0
Reply

    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).

    18y
    0