Why are all my Visual Studio unit test returning the result "Not executed"

  • Thread starter Thread starter Peter Morris
  • Start date Start date
P

Peter Morris

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?
 
1. Visual Studio tests, nUnit, mbUnit, csUnit or xUnit? (or something else?)
2. How many tests do you have?

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Blog:
http://feeds.feedburner.com/GregoryBeamer

*********************************************
| Think outside the box |
*********************************************
 
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?

It usually implies that the initialization code for the test crashed,
throwing
an unhandled exception. You should be able to see this in the test
results.

Matt
 
There is no test result. Every test has a yellow "!" in a triangle with
"Not Executed" written after it. If I try to view the test results it says
"The test has not been executed"
 
Back
Top