I want to simply know the basic difference between “failed” test and “broken” test in nunit.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t know about nUnit specifically but in general testing terminology, the two are well defined.
A failing test is one which is well written and which has determined that the component being tested is broken. This usually happens when an assertion fails in the test case.
A broken test is a badly written test that fails because of an error in itself rather than in the module being tested. This can, for example, be a syntax error in the test.