DEV Community

Discussion on: Which unit testing framework do you use?

Collapse
 
nickytonline profile image
Nick Taylor

It's been a couple of years since I did any C#, but Fluent Assertions is a great assertion framework. And for unit tests I believe it was still NUnit we were using.

You can also do some neat things with the Roslyn compiler in terms of validating things in tests, e.g. .configureAwait(false) for async/await. Been a while though, so a little fuzzy in my head... 😉