"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
70 views
Check all conditions before processing
Background:
I'm building a system to assign academic advisors to university students based on the student's attributes and advisor's acceptance. Now I want to check to see if every possible student ...
1
vote
0answers
17 views
Find what lines are covered in a run of Java code as in a Code Coverage tool
I just wanted to do a little hobby project that does code coverage like EMMA or JaCoCo. As a first step, is there any way to check just what line is being run by my JVM at any moment?
So for example, ...
1
vote
1answer
12 views
Number of possible combination of test cases to cover MC DC
For example expression Z := (A and not B) or (C xor D);
Is the following the only possible test case combination?
testCaseNO 1 2 3 4 5
Input A T T F F F
Input B T F T T T
...
0
votes
0answers
8 views
What is the method to write MCDC test cases?
I need to write Modified Condition and decision coverage Test cases i tried a lot but won't figured out how to write it. What are the steps to be followed ? What method do i need to follow ?
0
votes
0answers
13 views
coverage dont work in flexmojos-maven-plugin
I try see coverage report. Add coverage:true and get error.
Without the coverage:true, but I need to know what percentage of code coverage.
It seems the parser attempts to parse each files as java, ...
0
votes
0answers
10 views
how to use jacoco.exec report
I generated a code coverage report from jacoco, which is jacoco.exec. But I don't know how to use it ...
The way I generated it is through command line:
java ...
0
votes
0answers
26 views
+50
Emma instrumentation issue in <instr> ant task
I have an emma execution target in my ant script which captures the coverage for my project. Following is the ant script snippet from my emma target which worked fine until I added a new project which ...
0
votes
3answers
46 views
How can I find functional test code coverage?
I want to find my functional test code coverage for java application. The problem I am facing here is I have different projects for my developmend code and test-code.
Also, it is not unit test. So, ...
0
votes
0answers
29 views
How to identify code coverage for PHP code? [on hold]
We are building a site using PHP and wanted to identify the code coverage being achieved through manual regression test cases.
Are there any code coverage tools available which would instrument the ...
0
votes
0answers
23 views
Python send coverage report as mail body
I run coverage to cover my code and got a report file named report.txt. Now I wanna send the report to others via email using smtplib.
import smtplib
from email.mime.text import MIMEText
with ...
0
votes
0answers
14 views
VS 2010 Code coverage report not showing lines covered
I am using VS 2010. Code coverage report shows blocks covered and their percentage. Is there anyway I can see lines of code covered and their percentage in the report.I opened the report in VS 2010.
...
0
votes
1answer
26 views
Selenium IDE and php code coverage
I have a few test suites written in selenium IDE (data driven) , and I do not find export test suite option for php (phpunit) probably missing plugin.
So my question is how I can setup some tools to ...
1
vote
0answers
27 views
How can I test C1 coverage test in Ruby
I want to test the C0, C1 coverages. I found simplecov gem for C0 , but I don't find tools for C1 coverage. May I know if there are any C1 coverage tools in ruby?
4
votes
1answer
56 views
+50
Building a PL/SQL coverage report with DBMS Profiler
I am using DBMS_PROFILER for basic profiling of my PL/SQL packages. I am also using it to get code coverage statistics using the following query:
SELECT EXEC.unit_name unitname,ROUND ...
0
votes
1answer
9 views
Code coverage in Visual Studio 2010 for native C++ exe/dll
I am using VS 2010.Tried to get code coverage of my C++ exe that uses my few C++ dlls.Expected the coverage report to show the blocks covered in both modules(exe and dlls) but it shows only the blocks ...