"Code coverage" (synonym: test coverage) is a measure of the amount of application source code that has been exercised, usually by some testing regime, often by unit testing.
0
votes
1answer
6 views
OpenCover and GoogleTest - Complains missing PDBs
The build I am currently working on uses Visual Studio 2008 (Professional) in a 32bit environment to compile. We have been using Google Test Framework to create unit test. We are trying to use ...
0
votes
0answers
36 views
Is there a way to output a code coverage file for a native C++ app each time I run it in VS2012?
I'm currently going through the coverage of my code, and I need a .coverage file to view it. I have found out how to retrieve a coverage file for native C++ through this link
And they follow these ...
0
votes
2answers
20 views
Visual Studio 2012 menu 'analyze code coverage' is missing
There is this great tool in Visual Studio 2012 to show the test coverage of the source code. On the official MSDN homepage it is shown under menu Test -> Analyze Code Coverage.
But in my Test menu ...
0
votes
1answer
15 views
Android - generate coverage with emma (without ant)
After running ant clean emma debug and installing the generated apk file on my emulator, I am running the following command to run my unit tests:
adb shell am instrument -w -e package ...
0
votes
0answers
6 views
Code Coverage not working in vs2013
I've got a solution setup with Dependency Inject that has code coverage working flawlessly in vs2012 Update 3.
When I load it into vs2013 I receive the "Empty Results" error when attempting to check ...
1
vote
2answers
18 views
Code coverage - eliminating false positives
I'm using istanbul (via grunt, jasmine and phantomJS) to generate code coverage reports for my unit tests. I'm getting what I would call false positives caused by modules which have the module I'm ...
0
votes
0answers
10 views
PyDev Code Coverage: “File has no statistics”
I saw a similar post here Can't get Coverage to work in PyDev, "File has no statistics" , but I have a different issue (my folder names do not contain any spaces). Basically I followed ...
0
votes
2answers
42 views
How to do unit test coverage in Erlang
When using Python I do test code coverage with tools like python-coverage and especially for django the package djaango-nose, I'm looking for an equivalent in Erlang. I already do tests with eunit and ...
-3
votes
0answers
18 views
Free Code Coverage tools for C and Windows platform [on hold]
We are planning to implement code coverage testing for our C project. Please help me with any free tools which works for windows.
Thanks,
Sravan
0
votes
0answers
14 views
How can I specify a remote path to the Cobertura report in SONAR
I am running SONAR analysis from a Jenkins job on one machine, and generating coverage reports using Bamboo on another. I have a URL to the XML Coverage report, but SONAR does not find itwhen I ...
0
votes
0answers
8 views
Coverage.ec file is not getting generated though instrumentation was successful
We have a java application war file deployed on apache-tomcat-7.0.27. Once the war got exploded I have copied the emma.jar file to the web applications lib directory
...
0
votes
1answer
39 views
C# - Unit Tests - How to calculate Code Coverage
b.s Specflow, Unit Test
I am implementing Statement Coverage in Unit Tests, i have identified the if conditions, try catch blocks e.t.c and i will be writing scenarios which will cover all the code ...
0
votes
0answers
11 views
cobertura instrumentation RuntimeException and ClassNotFoundException warning and inconsistency
When I instrument my classes in a multi module project using ant I get a warning with RuntimeException and ClassNotFoundException. Despite these warnings I sometimes get a coverage report with nonzero ...
1
vote
2answers
45 views
Integration Test of REST APIs with Code Coverage
We have built a REST API that exposes bunch of business services - a business service may invoke other platform/utility services to perform database read and writes, to perform service authorization ...
0
votes
1answer
13 views
What does the “Coverage” mean in Xcode's build settings under Preprocessor Macros
Click any target --> build settings --> Preprocessor Macros --> Coverage
BTW, any books or materials talks everything about Xcode?