Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my Visual Studio 2012 solution I have a C# project for unit testing C++/CLI code, e.g.

...
using System.IO;
using Stuff;

namespace MyCLIClassTest
{
    [TestClass]
    public class MyCLIClassTest
    {
        public MyCLIClassTest() {}

        [ClassInitialize]
        public static void Setup(TestContext testContext) 
        {
        }

        [TestMethod]
        public void LibraryAccessTest()
        {
            ...
        }
    }
}

Now, the C# tests all fail with a message like "Method MyCLIClassTest.MyCLIClassTest.ClassInitialize has wrong signature. The method must be static, public, does not return a value and should take a single parameter of type TestContext."

After removing the ClassInitializer I got "Unable to set TestContext property for the class MyCLIClassTest.MyCLIClassTest. Error: System.ArgumentException: Object of type 'Microsoft.VisualStudio.TestPlatform.MSTestFramework.TestContextImplementation' cannot be converted to type 'Microsoft.VisualStudio.TestTools.UnitTesting.TestContext'..

share|improve this question
Everything seems good to me. What happens when you exclude C++ tests? Can you exclude them from project for a while and see what happens with C#? – nikita Feb 7 at 11:11
@nikita: Same error message. Maybe it has nothing to do with the c++ tests at all? So, then it is a certain setting of the c# project? Or a general option? – TobiMcNamobi Feb 7 at 11:46
1  
Still don't see anything suspicious here. Comment [ClassInitialize] method. Two [ClassInitialize] methods? – nikita Feb 7 at 12:02
OK, got it. After removing the ClassInitializer I got this: "Unable to set TestContext property for the class MyCLIClassTest.MyCLIClassTest. Error: System.ArgumentException: Object of type 'Microsoft.VisualStudio.TestPlatform.MSTestFramework.TestContextImplementation' cannot be converted to type 'Microsoft.VisualStudio.TestTools.UnitTesting.TestContext'..". And this had to do with the References. I still used the DLL of an older framework version. – TobiMcNamobi Feb 7 at 12:21

1 Answer

up vote 3 down vote accepted

I used DLLs of older unit testing framework versions. This happened because the project migrated recently to VS2012.

So, in the solution explorer under the test project you find "References". Right click it and select "Add reference..." to open the Reference Manager. Search for "unittest" and check the Microsoft.VisualStudio.QualityTools.UnitTestFramework with version number 10.1.0.0. Un-check all other versions of this assembly. Close the manager by clicking OK.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.