C
C#5w ago
workani

Whit Unit testing framework should I learn?

I‘m building Web APIs and would love to know which framework is best for testing and why?
6 Replies
ero
ero5w ago
if you ask 5 people this question, you're gonna get 5 different opinions. there is no correct answer. they all have their pros and cons.
Salman
Salman5w ago
The most popular one I've seen is xUnit
Pobiega
Pobiega5w ago
xUnit is the defacto standard these days, with NUnit a fairly close second either of those two are fine, but please avoid MSTest
workani
workaniOP5w ago
What are main advantages of xUnit compared to the NUnit?
Pobiega
Pobiega5w ago
Its fairly technical, but how they work at the core level. NUnit reuses the same class instance for all tests for a test class, xUnit doesnt this means that in xunit, your class constructor becomes the setup that, and how easy it is to work with [Theory] to set up parameterized testruns is why I personally recommend xUnit

Did you find this page helpful?