active questions tagged code-coverage - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T09:32:17Zhttp://stackoverflow.com/feeds/tag/code-coveragehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/287089/code-coverage-targets-for-apis0Code coverage targets for APIsLife is Elsewhere2008-11-13T14:36:04Z2009-12-02T22:00:02Z
<p>What number would you give someone who wants a concrete target number for API code coverage?</p>
<p>UPDATE: To clarify, statement/line code coverage. I realize concrete numbers don't make much sense, but this is for the situation where you tell people that concrete numbers don't make much sense and they still insist on getting a number from you no matter what. I specifically wrote API/SDK because some people might find lower code coverages more acceptable for application/GUI level software, as opposed to libraries, where more interfaces are exposed.</p>
http://stackoverflow.com/questions/1830975/highlight-text-from-visual-studio-2008-add-in0Highlight text from Visual Studio 2008 add-inRageous2009-12-02T06:16:34Z2009-12-02T06:16:34Z
<p>Hi, guys!</p>
<p>I'm writing another code coverage tool for .NET with Visual Studio 2008 integration.<br>
Everything goes well except one thing: I can't find a way to highlight some code chunks.</p>
<p>I need it to inform user about covered and not covered blocks.<br>
You can see example of the feature I want on the next screenshot (from native VS code coverage toolset):
<img src="http://img2.pict.com/c4/92/b9/2106705/0/image12.png" alt="Coverage Example"></p>
<p>Can someone provide me a code snippet that highlights text in the code view window?<br>
Links to appropriate MSDN articles related to VS2008 are also appreciated!</p>
<p>Thanks in advance.</p>
<p>WBR<br>
Alex</p>
http://stackoverflow.com/questions/1646952/code-coverage-using-mono-and-nunit-tests1Code coverage using mono and nunit testserrorprone2009-10-29T22:19:50Z2009-12-01T15:58:12Z
<p>Hello,</p>
<p>I'm trying to test a file (Account.cs) using testfile (AccountTest.cs). I run OSX 10.6 with Mono Framework (and nunit-console). </p>
<p>Below is Account.cs</p>
<pre><code> namespace bank
{
using System;
public class InsufficientFundsException : ApplicationException
{
}
public class Account
{
private float balance;
public void Deposit(float amount)
{
balance+=amount;
}
public void Withdraw(float amount)
{
balance-=amount;
}
public void TransferFunds(Account destination, float amount)
{
destination.Deposit(amount);
Withdraw(amount);
}
public float Balance
{
get { return balance;}
}
private float minimumBalance = 10.00F;
public float MinimumBalance
{
get{ return minimumBalance;}
}
}
}
</code></pre>
<p>And here is AccountTest.cs:</p>
<pre><code> namespace bank
{
using NUnit.Framework;
[TestFixture]
public class AccountTest
{
[Test]
public void TransferFunds()
{
Account source = new Account();
source.Deposit(200.00F);
Account destination = new Account();
destination.Deposit(150.00F);
source.TransferFunds(destination, 100.00F);
Assert.AreEqual(250.00F, destination.Balance);
Assert.AreEqual(100.00F, source.Balance);
}
[Test]
[ExpectedException(typeof(InsufficientFundsException))]
public void TransferWithInsufficientFunds()
{
Account source = new Account();
source.Deposit(200.00F);
Account destination = new Account();
destination.Deposit(150.00F);
source.TransferFunds(destination, 300.00F);
}
}
}
</code></pre>
<p><hr /></p>
<p>I compile these two files by:</p>
<pre><code>mcs -t:library Account.cs
mcs -t:library -r:nunit.framework,Account.dll AccountTest.cs
</code></pre>
<p>And get Account.dll and AccountTest.dll respectively.</p>
<p>To run the test I use:</p>
<pre><code>nunit-console AccountTest.dll
</code></pre>
<p>and it runs as it should, giving me the appropriate failures and passes.</p>
<p>However, now I want to use mono's code coverage ability to asses these tests. I'm reading the tutorial <a href="http://mono-project.com/Code_Coverage" rel="nofollow">http://mono-project.com/Code_Coverage</a> to run the coverage tools. And to use it I would need to compile into *.exe file rather than *.dll file. </p>
<p>If someone could help me with the main class of the AccountTest.cs file, I would be able to then compile it in exe and from there use the coverage tool.</p>
<p>Thanks a tonne in advance.</p>
http://stackoverflow.com/questions/1518362/code-coverage-tools-in-java3Code coverage tools in Javaemkrish2009-10-05T05:19:07Z2009-11-26T03:22:44Z
<p>Are there any such code coverage tools in Java that give the different paths in the program. Basically the idea is to ensure that all loops and nested loops are covered during execution. That is to be able to ascertain if all the loops in a code base have been executed at least through one iteration.</p>
http://stackoverflow.com/questions/317074/best-strategy-to-get-coding-prepared-for-unit-testing3Best strategy to get coding prepared for unit testingoo2008-11-25T11:36:02Z2009-11-25T12:24:09Z
<p>I have a solution that is missing a lot of code coverage. I need to refactor this code to decouple to begin to create unit tests. What is the best strategy? I am first thinking that I should push to decouple business logic from data access from businessobjects to first get some organization and then drill down from there. Since many of the classes don't support single responsible principle, it's hard to begin testing them.</p>
<p>Are there are other suggestions or best practices from taking a legacy solution and getting it into shape to be ready for code coverage and unit testing?</p>
http://stackoverflow.com/questions/1778683/dead-code-detection-in-php5Dead code detection in PHPFedyashev Nikita2009-11-22T13:23:46Z2009-11-25T08:23:04Z
<p>I have a project with very messy code - lots of duplication and dead code here and there.</p>
<p>Some time ago there was zero code coverage by unit-tests but now we're trying to write all new code in T.D.D. manner and lowering technical debt by covering "old" code by unit-tests as well(test-last technique).</p>
<p><b>Business logic's complexity is quite high</b> and sometimes no one can answer whether some methods are used or not.</p>
<p>How this dead code methods can be found? Extensive logging? Higher test coverage?(It is not very easy because customers want new features to come out)</p>
http://stackoverflow.com/questions/1747649/code-coverage-with-nunit2Code coverage with nUnit?Lieven Cardoen2009-11-17T09:38:43Z2009-11-25T06:58:24Z
<p>Is there a way to see the code coverage when using nUnit? I know there's such a feature in visual studio but can you use it with nUnit or only with the built-in vs unit tests?</p>
http://stackoverflow.com/questions/1213817/why-does-modulebuilds-testcover-gives-me-use-of-uninitialized-value-warnings0Why does Module::Build's testcover gives me "use of uninitialized value" warnings?Kurt W. Leucht2009-07-31T17:23:57Z2009-11-23T17:36:34Z
<p>I'm kinda new to Module::Build, so maybe I did something wrong. Am I the only one who gets warnings when I change my dispatch from "test" to "testcover"? Is there a bug in Devel::Cover? Is there a bug in Module::Build? I probably just did something wrong.</p>
<p>I'm using ActiveState Perl v5.10.0 with Module::Build version 0.31012 and Devel::Cover 0.64 and Eclipse 3.4.1 with EPIC 0.6.34 for my IDE.<br />
<em>UPDATE: I upgraded to Module::Build 0.34 and the warnings are still output.</em></p>
<p>Here's my unit test build file:</p>
<pre><code>use strict;
use warnings;
use Module::Build;
my $build = Module::Build->resume (
properties => {
config_dir => '_build',
},
);
$build->dispatch('test');
</code></pre>
<p>When I run this unit test build file, I get the following output:</p>
<pre><code>t\MyLib1.......ok
t\MyLib2.......ok
t\MyLib3.......ok
All tests successful.
Files=3, Tests=24, 0 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 CPU)
</code></pre>
<p>But when I change the dispatch line to 'testcover' I get the following output which always includes a bunch of "use of uninitialized value in bitwise and" warning messages:</p>
<pre><code>Deleting database D:/Documents and Settings/<username>/My Documents/<SNIP>/cover_db
t\MyLib1.......ok
Use of uninitialized value in bitwise and (&) at D:/Perl/lib/B/Deparse.pm line 4252.
Use of uninitialized value in bitwise and (&) at D:/Perl/lib/B/Deparse.pm line 4252.
t\MyLib2.......ok
Use of uninitialized value in bitwise and (&) at D:/Perl/lib/B/Deparse.pm line 4252.
Use of uninitialized value in bitwise and (&) at D:/Perl/lib/B/Deparse.pm line 4252.
t\MyLib3.......ok
Use of uninitialized value in bitwise and (&) at D:/Perl/lib/B/Deparse.pm line 4252.
Use of uninitialized value in bitwise and (&) at D:/Perl/lib/B/Deparse.pm line 4252.
All tests successful.
Files=3, Tests=24, 0 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 CPU)
Reading database from D:/Documents and Settings/<username>/My Documents/<SNIP>/cover_db
---------------------------- ------ ------ ------ ------ ------ ------ ------
File stmt bran cond sub pod time total
---------------------------- ------ ------ ------ ------ ------ ------ ------
.../lib/ActivePerl/Config.pm 0.0 0.0 0.0 0.0 0.0 n/a 0.0
...l/lib/ActiveState/Path.pm 0.0 0.0 0.0 0.0 100.0 n/a 4.8
<SNIP>
blib/lib/<SNIP>/MyLib2.pm 100.0 90.0 n/a 100.0 100.0 0.0 98.5
blib/lib/<SNIP>/MyLib3.pm 100.0 90.9 100.0 100.0 100.0 0.6 98.0
Total 14.4 6.7 3.8 18.3 20.0 100.0 11.6
---------------------------- ------ ------ ------ ------ ------ ------ ------
Writing HTML output to D:/Documents and Settings/<username>/My Documents/<SNIP>/cover_db/coverage.html ...
done.
</code></pre>
http://stackoverflow.com/questions/94556/maven2-multiproject-cobertura-reporting-problems-during-mvn-site-build1Maven2 Multiproject Cobertura Reporting Problems During mvn site BuildNicholas Trandem2008-09-18T17:13:55Z2009-11-23T14:46:57Z
<p>We've got a multiproject we're trying to run Cobertura test coverage reports on as part of our mvn site build. I can get Cobertura to run on the child projects, but it erroneously reports 0% coverage, even though the reports still highlight the lines of code that were hit by the unit tests. We're using mvn 2.0.8. I've tried running "mvn clean site", "mvn clean site:stage" and "mvn clean package site". I know the tests are running, they show up in the surefire reports (both the txt/xml and site reports). Am I missing something in the configuration? Does Cobertura not work right with multiprojects?</p>
<p>This is in the parent .pom:</p>
<pre><code><build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<inherited>true</inherited>
<executions>
<execution>
<id>clean</id>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<inherited>true</inherited>
</plugin>
</plugins>
</reporting>
</code></pre>
<p>I've tried running it with and without the following in the child .poms:</p>
<pre><code> <reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
</code></pre>
<p>I get this in the output of the build:</p>
<pre><code>...
[INFO] [cobertura:instrument]
[INFO] Cobertura 1.9 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Instrumenting 3 files to C:\workspaces\sandbox\ProbuildCommonJsf\target\generated-classes\cobertura
Cobertura: Saved information on 3 classes.
Instrument time: 186ms
[INFO] Instrumentation was successful.
...
[INFO] Generating "Cobertura Test Coverage" report.
[INFO] Cobertura 1.9 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Cobertura: Loaded information on 3 classes.
Report time: 481ms
[INFO] Cobertura Report generation was successful.
</code></pre>
<p>And the report looks like this:
<img src="http://trandem.com/images/cobertura.png" alt="cobertura report" /></p>
http://stackoverflow.com/questions/253614/getting-classformaterror-with-emma0Getting ClassFormatError with EMMA?Epaga2008-10-31T14:06:28Z2009-11-23T07:20:29Z
<p>I'm trying to generate code coverage reports with <a href="http://emma.sourceforge.net/" rel="nofollow">EMMA</a> using tests of which some use <a href="http://jmockit.dev.java.net" rel="nofollow">JMockit</a> as a mocking framework. For the most part, it works, but a few of my tests crash with a ClassFormatError, like so:</p>
<pre><code>java.lang.ClassFormatError
at sun.instrument.InstrumentationImpl.redefineClasses0(Native Method)
at sun.instrument.InstrumentationImpl.redefineClasses(InstrumentationImpl.java:79)
at mockit.internal.RedefinitionEngine.redefineMethods(RedefinitionEngine.java:138)
at mockit.internal.RedefinitionEngine.redefineMethods(RedefinitionEngine.java:73)
at mockit.Mockit.setUpMocks(Mockit.java:177)
at test.my.UnitTest.setUpBeforeClass(UnitTest.java:21)
</code></pre>
<p>Any idea what is going on, and whether I can fix the problem? Or are EMMA and JMockit mutually exclusive?</p>
http://stackoverflow.com/questions/1780635/how-can-i-get-test-coverage-statistics-for-vs2008-c-project0how can I get test coverage statistics for VS2008 C# projectGreg2009-11-23T00:57:49Z2009-11-23T01:50:28Z
<p>Hi,</p>
<p>I am using Visual Studio 2008 for a C# WinForms application and I am using the MSTest unit testing framework. It doesn't seem to have test coverage (I think it's in Team System?).</p>
<p>What is the easiest (cheapest?) way to get some test coverage statistics for my project here? Effectively just an indication of for each *.cs file the % test coverage my unit tests are providing, and for the cases when it is not 100% which lines aren't covered.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1774889/cobertura-ant-script-is-missing-log4j-classes0Cobertura ant script is missing Log4J classescringe2009-11-21T07:57:15Z2009-11-21T09:03:46Z
<p>I tried to get <strong>Cobertura</strong> running inside my ant script, but I'm stuck right at the beginning. When I try to insert the cobertura <em>taskdef</em> I'm missing the Log4J libraries. </p>
<h2>Ant properties & classpath</h2>
<pre><code><property name="cobertura.dir" location="/full/path/to/cobertura-1.9.3" />
<path id="cobertura.classpath">
<fileset dir="${cobertura.dir}">
<include name="cobertura.jar" />
<include name="lib/**/*.jar" />
</fileset>
</path>
<taskdef classpathref="cobertura.classpath" resource="tasks.properties" />
</code></pre>
<h2>My ant target</h2>
<pre><code><!-- =================================
target: cobertura
================================= -->
<target name="cobertura" depends="clean, init" description="Generates cobertura coverage reports">
<cobertura-instrument todir="${dir.build.instrumented}">
<fileset dir="${dir.build}">
<include name="**/*.class" />
</fileset>
</cobertura-instrument>
</target>
</code></pre>
<p>I think I did everything like it is described in the <a href="http://cobertura.sourceforge.net/anttaskreference.html" rel="nofollow">Cobertura documentation</a> but I get this</p>
<h2>Ant build error</h2>
<pre><code>BUILD FAILED
build.xml:95: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
</code></pre>
<p>Inside the <strong><em>${cobertura.dir}</em></strong> there is the <strong><em>lib</em></strong> directory with all files. I unzipped it from the cobertura distribution ZIP directly into that directory.</p>
<p>Am I missing a step? Something wrong with my configuration so far?</p>
http://stackoverflow.com/questions/1764806/how-to-omit-using-python-coverage-lib1How to omit using python coverage lib ?yml2009-11-19T16:54:26Z2009-11-20T02:08:43Z
<p>I would like to omit some module that are in some particular directory : eggs and bin</p>
<pre><code>coverage -r -i --omit=/usr/lib/,/usr/share/,eggs,bin
Name Stmts Exec Cover
-----------------------------------------------------------------------------------------
bin/test 5 5 100%
eggs/BeautifulSoup-3.0.7a-py2.6.egg/BeautifulSoup 1008 463 45%
eggs/Django-1.0.2_final-py2.6.egg/django/__init__ 15 12 80%
</code></pre>
<p>I have also try several variant of this without luck :</p>
<pre><code>coverage -r -i --omit=/usr/lib/,/usr/share/,`pwd`/eggs,`pwd`/bin
or
coverage -r -i --omit=/usr/lib/,/usr/share/,django,BeautifulSoup
or
coverage -r -i --omit=/usr/lib/,/usr/share/,<absolute path>/eggs
</code></pre>
<p>It would be great if someone has a tip to get this working.</p>
<p>Regards,</p>
<p>yann </p>
http://stackoverflow.com/questions/470310/where-can-i-find-code-profiling-and-or-code-coverage-modules-that-work-with-modp0Where can I find code profiling and/or code coverage modules that work with mod_perl2?Kev2009-01-22T18:28:53Z2009-11-19T23:11:53Z
<p>Is there a way to get this functionality under mod_perl2?</p>
<p>And can it be triggered via web requests as opposed to the command line? Or do I need to fake whatever $ENV variables and query strings and cookies that my script requires and use the command line somehow?</p>
<p>Google and CPAN searches all seem to point to things that either don't even support mod_perl to begin with, or do, but are old and don't mention mod_perl2.</p>
http://stackoverflow.com/questions/534201/is-it-possible-to-measure-function-coverage-with-gcov3Is it possible to measure function coverage with gcov?Dmytro Malenko2009-02-10T21:03:44Z2009-11-18T19:17:27Z
<p>Currently we use gcov with our testing suite for Linux C++ application and it does a good job at measuring line coverage. </p>
<p>Can gcov produce function/method coverage report in addition to line coverage?</p>
<p>Looking at the parameters gcov accepts I do not think it is possible, but I may be missing something. Or, probably, is there any other tool that can produce function/method coverage report out of statistics generated by gcc?</p>
<p><strong>Update:</strong> By function/method coverage I mean percentage of functions that get executed during tests.</p>
http://stackoverflow.com/questions/1755437/getting-suggestions-on-how-to-get-the-best-code-coverage-in-java0Getting suggestions on how to get the best code coverage in javaelhoim2009-11-18T11:40:16Z2009-11-18T12:33:59Z
<p>Several tools exists that allow to calculate path coverage for a set of tests, but is there a tool (or an algorithm) that could suggest values to get the best path coverage with the smallest number of tests possible?</p>
<p>For example with the following classes:</p>
<pre><code>public class User {
private boolean isAdmin = false;
private String name;
private String password;
public User(String name, String password, boolean isAdmin) {
this.name = name;
this.password = password;
this.isAdmin = isAdmin;
}
public boolean isAdmin() {
return isAdmin;
}
public boolean authenticate(String name, String password) {
if (name.equals(this.name) && password.equals(this.password)) {
return true;
} else {
return false;
}
}
}
</code></pre>
<p><hr></p>
<pre><code>public class DataRepository {
List<String> data = new ArrayList<String>();
public void add(String dataPiece) {
data.add(dataPiece);
}
public void clearAll(User userAuthenticated) {
if (userAuthenticated.isAdmin()) {
data.clear();
}
}
public void addAll(User userAuthenticated, List<String> collection) {
if (userAuthenticated.isAdmin()) {
data.addAll(collection);
}
}
}
</code></pre>
<p>I will get a better test coverage if i create a test which is using a <strong>User</strong> with <strong>isAdmin</strong> at <em>true</em>.</p>
<p>Is there a tool that could mention: if you create a test with <strong>User</strong> with <strong>isAdmin</strong> at <em>true</em> you will get the best test coverage.</p>
<p>Something like that but for more complicated cases, and that checks all the branches of code.</p>
http://stackoverflow.com/questions/1734001/run-unit-tests-and-coverage-in-certain-python-structure0run unit tests and coverage in certain python structurebua2009-11-14T11:37:38Z2009-11-14T11:54:57Z
<p>Hi,
I have some funny noob problem.</p>
<p>I try to run unit tests from commandline:</p>
<pre><code>H:\PRO\pyEstimator>python src\test\python\test_power_estimator.py
Traceback (most recent call last):
File "src\test\python\test_power_estimator.py", line 2, in <module>
import src.main.python.power_estimator as power
ImportError: No module named src.main.python.power_estimator
</code></pre>
<p>this same happens when I try to run it in desired folder:</p>
<blockquote>
<p>H:\PRO\pyEstimator\src\test\python>python
test_power_estimator.py</p>
</blockquote>
<p>My folder structure looks like this.</p>
<pre><code>├───src
│ │ __init__.py
│ │ __init__.pyc
│ │
│ ├───main
│ │ │ __init__.py
│ │ │ __init__.pyc
│ │ │
│ │ └───python
│ │ │ __init__.py
│ │ │ power_estimator.py
│ │ │ __init__.pyc
│ │ │ power_estimator.pyc
│ │ │
│ │ └───GUI
│ │ __init__.py
│ │
│ └───test
│ │ __init__.py
│ │
│ └───python
│ test_power_estimator.py
│ __init__.py
│ covrunner.bat
│ .coverage
│
└───doc
</code></pre>
<p>Maybe i don't see something obvious.
I also try to run coverage.
Is this approach good (file structure) ?</p>
http://stackoverflow.com/questions/1458186/open-source-c-code-coverage-tool-with-gui2Open source C++ Code Coverage tool with GUI?Mehran2009-09-22T05:07:50Z2009-11-13T06:40:30Z
<p>Do you know any Open source C++ Code Coverage tool that support a decent GUI to facilitate browsing the result?</p>
<p>Thanks.</p>
<p>EDIT: I forgot to mention, My code is developed Using MFC so I need a tool that supports Windows.</p>
http://stackoverflow.com/questions/1647165/is-there-a-code-coverage-tool-for-the-tsql-sproc-unit-tests2is there a code-coverage tool for the TSQL sproc unit tests?Yuri2009-10-29T23:25:35Z2009-11-13T02:41:53Z
<p>I am looking for a unitttest and code-coverage tool for TSQL sprocs. Can anyone recommend a good one? Commercial or free.</p>
http://stackoverflow.com/questions/1496469/code-coverage-tools-for-symbian-c-and-maemo3Code coverage tools for Symbian C++ and MaemoRiussi2009-09-30T06:50:33Z2009-11-11T20:09:05Z
<p>What code coverage tools have you used with Symbian C++ and Maemo? What are the pros and cons of the tool you are using?</p>
http://stackoverflow.com/questions/677219/condition-coverage-in-python8condition coverage in pythonMykola Kharechko2009-03-24T12:47:09Z2009-11-11T12:44:20Z
<p>Is there any tool/library that calculate percent of "condition/decision coverage" of python code. I found only coverage.py but it calculates only percent of "statement coverage".</p>
http://stackoverflow.com/questions/1577069/setting-up-gcov-in-xcode-3-11Setting up gcov in Xcode 3.1Algorithmic2009-10-16T09:25:29Z2009-11-06T00:54:14Z
<p>I'm trying to setup my Xcode project to be instrumented with gcov so I can determine the code coverage of my unit tests. All of the documentation I find online talks about settings that I don't find in Xcode 3.1, though. An example:</p>
<blockquote>
<p>To work with Coverstory, first you need to set up your target to work with gcov. This requires turning on "Instrument Program Flow", "Generate Test Coverage Files" and linking with the gcov library.
(<a href="http://code.google.com/p/coverstory/wiki/UsingCoverstory" rel="nofollow">Using Coverstory</a>)</p>
</blockquote>
<p>The closest thing I can find to "Instrument Program Flow" and "Generate Test Coverage Files" in my build settings is "Generate Profiling Code", which doesn't appear to do what I want it to do.</p>
<p>Am I looking in the wrong place for these settings or are all of the examples I'm finding online stale?</p>
http://stackoverflow.com/questions/1073055/how-to-generate-an-html-report-from-partcover-results-xml0How to generate an HTML report from PartCover results .xmlEugene Petrenko2009-07-02T07:54:18Z2009-11-05T12:29:43Z
<p>How to generate an HTML report from PartCover results .xml</p>
http://stackoverflow.com/questions/1660141/java-measure-code-coverage-for-remote-scripting-tests1Java: measure code coverage for remote scripting testslivnat peer2009-11-02T09:06:16Z2009-11-02T11:43:35Z
<p>We have an application which is deployed on <a href="http://en.wikipedia.org/wiki/JBoss%5Fapplication%5Fserver" rel="nofollow">JBoss</a> 5.1, <a href="http://en.wikipedia.org/wiki/Java%5FDevelopment%5FKit" rel="nofollow">JDK</a> 1.6.
We also have scripts written in <a href="http://en.wikipedia.org/wiki/Windows%5FPowerShell" rel="nofollow">PowerShell</a> for testing. These scripts access the application using a web-service.
I would like to check the code coverage of the scripts. Any ideas?
Most of the tools I saw are checking a <a href="http://en.wikipedia.org/wiki/JUnit" rel="nofollow">JUnit</a> test coverage and I don't see how we can use them.</p>
http://stackoverflow.com/questions/1657568/what-is-a-good-free-c-unit-test-coverage-tool3What is a good, free C# unit test coverage tool?mkelley332009-11-01T16:20:30Z2009-11-01T16:36:24Z
<p>I'm looking for a tool that I can run against my code base to determine which areas of my code are covered by NUnit tests I've written. I would appreciate any suggestions at all, and example usage if needed. Thanks!</p>
http://stackoverflow.com/questions/1016117/how-can-i-remove-filter-ignore-some-package-from-emma-code-coverage0How can I remove/filter/ignore some package from Emma (code coverage)Castanho2009-06-19T02:35:28Z2009-10-29T06:57:30Z
<p>Hi all...</p>
<p>I`m trying to <strong>remove some package from my report</strong> and having trouble.</p>
<p>Could some one give me some help?</p>
<p>I'm using EMMA in my <em>ant</em> process.
<hr /></p>
<p><code>
<!-- Generate the emma report both in xml and html --><br>
<emma><br>
<report<br>
sourcepath="${build.report.src}"<br>
metrics="class:${coverage.classes.min},method:${coverage.methods.min}">
<fileset dir="${build.report.junit.data.dir}"><br>
<include name="*.emma"/><br>
</fileset><br>
<html outfile="${build.report.reports}/emma/raw.html" depth="method"/><br>
<xml outfile="${build.report.tmp}/emma.xml" depth="method"/><br>
</report><br>
</emma><br>
</code>
<hr /></p>
<p>I`ve tried to use:
<code><br>
<filter excludes="com.my.package.*"/>
</code></p>
<p>But with <strong>no</strong> success :(</p>
http://stackoverflow.com/questions/196721/how-to-get-cobertura-to-fail-m2-build-for-low-code-coverage2How to get Cobertura to fail M2 build for low code coverageAndrew Swan2008-10-13T04:35:31Z2009-10-28T03:12:06Z
<p>I'm trying to configure my WAR project build to fail if the line or branch coverage is below given thresholds. I've been using the configuration provided on page 455 of the excellent book <a href="http://oreilly.com/catalog/9780596527938/" rel="nofollow">Java Power Tools</a>, but with no success. Here's the relevant snippet of my project's Maven 2 POM:</p>
<pre><code><build>
...
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<check>
<!-- Per-class thresholds -->
<lineRate>80</lineRate>
<branchRate>80</branchRate>
<!-- Project-wide thresholds -->
<totalLineRate>90</totalLineRate>
<totalBranchRate>90</totalBranchRate>
</check>
<executions>
<execution>
<goals>
<goal>clean</goal>
<goal>check</goal>
</goals>
</execution>
<execution>
<id>coverage-tests</id>
<!-- The "verify" phase occurs just before "install" -->
<phase>verify</phase>
<goals>
<goal>clean</goal>
<goal>check</goal>
</goals>
</execution>
</executions>
<instrumentation>
<excludes>
<exclude>au/**/*Constants.*</exclude>
</excludes>
<ignores>
<ignore>au/**/*Constants.*</ignore>
</ignores>
</instrumentation>
</configuration>
</plugin>
...
</plugins>
...
</build>
</code></pre>
<p>As I say, the coverage report works fine, the problem is that the "install" goal isn't failing as it should if the line or branch coverage is below my specified thresholds. Does anyone have this working, and if so, what does your POM look like and which version of Cobertura and Maven are you using? I'm using Maven 2.0.9 and Cobertura 2.2.</p>
<p>I've tried Googling and reading the Cobertura docs, but no luck (the latter are sparse to say the least).</p>
http://stackoverflow.com/questions/1302416/unit-testing-and-code-coverage-frameworks-for-net2Unit Testing and Code Coverage Frameworks for .Net?Steve2009-08-19T20:21:49Z2009-10-26T20:35:31Z
<p>I am about to start a new project and am looking around for both a unit testing framework and some sort of code coverage profiler. I've used the unit test framework in Visual Studio Pro in the past but I've never used a coverage framework.</p>
<p>Does anyone have views on the best unit testing and code coverage frameworks around at the moment?</p>
http://stackoverflow.com/questions/1625845/full-code-coverage0Full code coverageStuart2009-10-26T16:42:59Z2009-10-26T17:09:29Z
<p>I'm trying to obtain full code coverage for the following line of code...</p>
<pre><code>stringWriter.Write(HtmlEncodedString.Format(string.Format("{0,-10:C}", x + y)))
</code></pre>
<p>The line above this one is showing as fully covered and is just writing out a string but this one is only showing as partially covered. </p>
<p>Anybody have any ideas how I can make this line fully covered?</p>
http://stackoverflow.com/questions/1606106/where-is-coverageeye-or-another-free-code-coverage-tool-for-net0Where is CoverageEye ? Or another free code coverage tool for .Net ...Tim2009-10-22T09:42:06Z2009-10-22T14:33:14Z
<p>Hi all, </p>
<p>I was looking for CoverageEye that was available on gotdotnet. But after closing, I'm unable to find it elsewhere.</p>
<p>Do you know more about it ?
Or another good code coverage tool for .net ?</p>
<p>Thanks for your help,</p>