I am not sure if this is a bug or my installation is completely missing a DLL.
I need to use ASSERT in C#, so I need add ther reference for Microsoft.VisualStudio.TestTools.UnitTesting;
But the DLL referencing to is missing. I am pointing towards the wrong DLL in VS 2010?
Thanks
There is no
Microsoft.VisualStudio.TestTools.UnitTesting.dll. The type’s namespace isMicrosoft.VisualStudio.TestTools.UnitTesting, but the assembly in which the type is defined has a different name.From the documentation, the name of the assembly is “Microsoft.VisualStudio.QualityTools.UnitTestFramework”; its DLL is
microsoft.visualstudio.qualitytools.unittestframework.dll.