Search code examples
c#visual-studiounit-testingsharpdevelop

Using Microsoft.VisualStudio.TestTools.UnitTesting without Visual Studio?


I'm trying to build an open source project in Sharpdevelop, but the tests don't compile as it references the Microsoft.VisualStudio.TestTools.UnitTesting namespace.

I don't have Visual Studio (not even the Express editions). Is there any way to compile this project without Visual Studio (and without changing the code to use NUnit)?


Solution

  • I would say no, because as you can see from the namespace, MS Test framework relies on Visual Studio.