Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the differences between Microsoft TestTools' UnitTesting and NUnit?

I use NUnit for Mono/C# on my Mac, but I need to use Microsoft.VisualStudio.TestTools.UnitTesting for unit testing.

  • How is Microsoft TestTools' UnitTesting different from NUnit? Can I just change the namespace and recompile to get the same result, or do I have to rewrite the test?
  • Can I copy some of the assemblies to my Mac to run tests for Microsoft.VisualStudio.TestTools.UnitTesting? If so, what files should be copied?
like image 425
prosseek Avatar asked Nov 04 '10 21:11

prosseek


1 Answers

See Migrating from NUnit to MSTest.

As to why you might try convincing your team to migrate the other way, see NUnit vs. MsTest: NUnit wins for Unit Testing.

like image 147
TrueWill Avatar answered Oct 27 '22 01:10

TrueWill