What is difference between xUnit and NUnit testing?
NUnit would be creating a new test class instance and would run every test methods from that particular instance. xUnit.net would create a new test class instance for each and every test method.
What is difference between xUnit and NUnit testing?
NUnit would be creating a new test class instance and would run every test methods from that particular instance. xUnit.net would create a new test class instance for each and every test method.