Exclusions
I'm having trouble with excluding attributes and files from NCover. Were currently getting results for the .cs files. These are not the tests that the files include these are the actual .cs files. ie. MyAppTests is showing it has a 100% pass rate but I don't want these included in the report. They all contain a TestFixtrueAttribute which I tried to use as an excludeAttribute but with no luck. I've also tried to exclude specific files from the NCoverExplorer task. I'm at my end with this and am unable find anything useful on the internet.
We are running NCover from a Nant task. I'm hoping this is something little but any help would be appreciated.
<ncover>
commandLineExe="C:\Program Files\NUnit 2.4.6\bin\nunit-console.exe"
commandLineArgs="C:\Repository\DotNet2.0\MyApp\bin\Debug\MyApp.dll"
excludeAttributes="TestFixtureAttribute">
<assemblies>
</assemblies>
</ncover>
There is an exclude in between the assemblies tags but not showing up for some reason....