If I mark a fixture as ignored in Visual Studio, and then run the tests in the NCrunch console runner, I see the following in the RawResults,xml file:
Code:
<fixture name="<redacted>">
<wasRun>False</wasRun>
<isIgnored>True</isIgnored>
</fixture>
However, when I ignore a single test within a fixture that is not ignored in its entirety, I can't find any record of that test existing in RawResults.xml. I would have thought that it would appear, but with a similar <isIgnored> element.
How can I get a list of ignored tests from the console runner output?
Update with further info:
* The TestResultsInNUnitFormat.xml file claims that the test ran.
* The AllResults.html file claims that the test was ignored, but then lists the test output, perhaps from the previous run?