.NET 2.0 Code - Testing Modules with MoQ

I am creating a .NET 2.0 database, and I want to use any library of test frameworks for unit testing the .NET 2.0 codebase. Is there some kind of assembly using .NET 3.5, still OK, am I using it as a tool for testing .NET 2.0 modules?

+5
source share
1 answer

Definitely OK to use Moq to test the 2.0 code base. For a long time, we only had assemblies and .NET 2.0 applications, but .NET 3.5 SP1 class libraries were still created for testing using NUnit and Moq.

+4
source

All Articles