Iain Sproat
Iain Sproat

Reputation: 5340

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)?

Upvotes: 2

Views: 1939

Answers (1)

Davide Piras
Davide Piras

Reputation: 44605

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

Upvotes: 1

Related Questions