When I run my unit tests in my project I am seeing a result "Not executed" for every one. I have restarted my computer so I doubt this is some kind of hung process issue.
Google has revealed nothing. Does anyone have any ideas?
|
When I run my unit tests in my project I am seeing a result "Not executed" for every one. I have restarted my computer so I doubt this is some kind of hung process issue. Google has revealed nothing. Does anyone have any ideas? |
|||
|
|
|
What a PITA! The IDE doesn't show any errors. In order to determine the error you have to do this
At the bottom of the output you will see the following text
In my case it was the following: Failed to queue test run 'Peter Morris@PETERMORRIS-PC 2009-02-09 10:00:37': Test Run deployment issue: The location of the file or directory 'C:\SomePath\SomeProject.Tests\bin\Debug\Rhino.Mocks.dll' is not trusted. Now if VS had told me this in the IDE I could have fixed it in minutes! All you have to do is open Windows Explorer and find that DLL. Right-click on it and go to Properties. Then click the "Unblock" button. What a complete waste of my time! |
|||||||
|
|
There's a link "Test run error" in the Test Results window that shows the same error messages in Visual Studio ( no need to run mstest ) |
|||
|
|
|
Unit tests not executed I've found that it is good advice to never have a constructor for a unit test class. If anything in a constructor ever throws, the test will just be reported as "not executed". Put test initialization in a TestInitialize method instead. Exceptions thrown there are reported by the IDE. Blocked Binaries Usually you have to unblock the ZIP file itself before you extract binaries from it, and then all the binaries will be unblocked. If you try to unblock the binaries themselves the unblocking doesn't "stick". |
||||
|
|
Sometimes the error could also be "Failed to queue test run 'XXX'. The path is not of a legal form." The solution could be to change the TRX naming pattern in .testsettings file. The quote from http://social.msdn.microsoft.com/Forums/da-DK/vststest/thread/c6efa2ba-1657-41bc-85b1-5a889d111e2f:
|
|||
|
|
|
Another reason for "Failed to queue test run 'XXX'. The path is not of a legal form." is that the account does not have a profile loaded. E.g. when you start mstest.exe with CreateProcessAsUser() and forget to call LoadUserProfile() as well. |
|||
|
|