DEV Community

Discussion on: Which unit testing framework do you use?

Collapse
 
markschweiger15 profile image
Mark Schweiger

We are using NUnit at the moment and considering porting to xUnit.
As for mock frameworks, we use Moq on our current project, and for our legacy code, we used Typemock.

Haven't done much C/C++ lately but I recall that googletest was our tool of choice.