mono creates its own debug targets called .mdb files when you use the mcs compiler.
is there a way of using NCover or another code coverage tool with Mono?
a commandline tool would be better so I can add it to our continuous integration server.
mono creates its own debug targets called .mdb files when you use the mcs compiler.
is there a way of using NCover or another code coverage tool with Mono?
a commandline tool would be better so I can add it to our continuous integration server.
See the C# Test Coverage tool from Semantic Designs:
http://www.semanticdesigns.com/Products/TestCoverage/CSharpTestCoverage.html
Very low overhead, handles huge systems of files, intuitive GUI showing coverage on specific files, and generated report with coverage breakdown at method, class and package levels.
Operates by instrumenting the C# source code, and needs no other support from Mono other being able to compile and run the instrumented code, so it should run fine with Mono.