We\'re using AQTime\'s coverage profiler to check coverage results for unit tests. It seems to generally work okay, but has a nasty habit of overestimating coverage because some functions don\'t appea
Does anyone know of a tool that can help determine which unit tests should be run based on the diffs from a commit?
Visual Studio code coverage produces a .coverage binary file which can be converted to xml. Is there an xsl transform available that can convert th开发者_Python百科at xml to a formatted report similar
I tried to get Cobertura running inside my ant script. All is successfull (source code building, junit tests, cobertura reports (xml / html); but in html reports, the code coverage is always at 0% ...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I am writing some unit tests using visual studio 2008 professional edition. I learned that visual studio has a built in code coverage utility however it seems that this feature is not available with m
My project targets a low-cost and low-resource embedded device. I am dependent on a relatively large and sprawling Python code base, of which my use of its APIs is quite specific.
I am debugging a C/C++ code with Visual Studio. There is a loop called 10000 times and in one of the interactions, at the end of the loop, there is an error, as the program tries to access the N+1 val
We have moved to Visual Studio 2010 but our TFS folks are not ready yet.After some work, we can get the build to work, but we don\'t get code coverage.
I have a python script which generates some reports bas开发者_Go百科ed on a DB. I am testing the script using java Db Units which call the python script.