vote up 2 vote down star

Within Visual Studio 2008 SP1, you can create a unit test project which uses MSTest as the test runner. I've been writing tests now at work that test unmanaged C++ MFC from the managed MSTest project, and it's been quite an interesting ride.

There seems to be a difference between using the IDE's test runner versus using the command line application, MSTest.exe. In my scenario, the tests will run fine within the IDE and all tests will pass, yet if you run the command line test runner, MSTest.exe will hang while trying to load the unit test DLL.

This appears to be a problem with a missing dependency within the DLL. When I load up the unit test DLL in Depends.exe (Dependency Walker), Depends.exe will complain that it can't find msvcr90d.dll, which is the VS2008 debug C runtime. I copied that file to the Out folder for the test run and tried running mstest on the test DLL but it didn't fix the problem. Any ideas?

I could add some DeploymentItems to the tests or to the testrunconfig, but I have no way of finding out what I need to add. Any ideas for finding what items should be added as DeploymentItems?

This happens when I test against a static lib that has the CWinApp object removed. I think I have to remove it so that there aren't two CWinApp instances, right?

I've looked at this help article in the MSDN forums, but it hasn't solved my problem: http://social.msdn.microsoft.com/forums/en-US/vststest/thread/aa7f7567-faba-4589-b0ae-fe8d2c831c7a/ I'm not sure which assembly is missing and there are so many entries within Process Monitor that it seems impossible to find the missing one. Any help?

flag

Please don't double add questions. Instead edit your original question and add whatever information you were missing. – JaredPar May 20 at 19:52
I'm not sure how the question got created twice. I have since marked the other question for deletion. – Jared May 20 at 20:01
Jared, to confirm, when you say the referenced forum post hasn't helped, do you mean you're adding the /runconfig:yourfile.testrunconfig parameter to mstest and it still hangs? – John Oct 20 at 23:30
@John, yes. It still hangs with that parameter. – Jared Oct 21 at 15:13

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.