I’m using Visual studio (sometimes resharper) to run my unit test.
I heard about NUnit, but I don’t know many things about it…
Should I care about it ? Can it offer something better than visual studio?
Should I Use NUnit and why?
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.
NUnit has few advantages over MS-Test
Assert.AreEqual(expected, actual)vsAssert.That(actual, Is.EqualTo(expected))[TestCase]! NUnit allows for parameter-ized tests.