Login
Remember
Register
Ask a Question
What are three test cases you should go through in unit testing?
0
votes
asked
Mar 5, 2020
in
C Sharp
by
JackTerrance
What are three test cases you should go through in unit testing?
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 5, 2020
by
JackTerrance
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).
...