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?
NUnit has few advantages over MS-Test
Assert.AreEqual(expected, actual)
vs Assert.That(actual, Is.EqualTo(expected))
[TestCase]
! NUnit allows for parameter-ized tests.