Tagged Questions

"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.

learn more… | top users | synonyms (1)

65
votes
10answers
16k views

Code Coverage for C#/.NET

I wonder what options there are for .net (or C# specifically) Code Coverage, especially in the Lower Priced segment? NCover Seems to be very popular and looks quite good Supports statement coverage ...
56
votes
13answers
8k views

Can you recommend an alternative for NCover?

I'm looking for a good .Net code coverage alternative to NCover (insufficient .Net 3.5 coverage and now pay-for) or VSTS (way too expensive). We currently test with NUnit, but could switch to ...
54
votes
24answers
11k views

What is a reasonable code coverage % for unit tests (and why)?

If you were to mandate a minimum percentage code-coverage for unit tests, perhaps even as a requirement for committing to a repository, what would it be? Please explain how you arrived at your answer ...
43
votes
11answers
8k views

How can I unit test a GUI?

The calculations in my code are well-tested, but because there is so much GUI code, my overall code coverage is lower than I'd like. Are there any guidelines on unit-testing GUI code? Does it even ...
43
votes
13answers
8k views

What code analysis tools do you use for your Java projects?

What code analysis tools do you use on your Java projects? I am interested in all kinds static code analysis tools (FindBugs, PMD, and any others) code coverage tools (Cobertura, Emma, and any ...
33
votes
6answers
6k views

Are there any good JavaScript code coverage tools?

I am looking for a JavaScript code coverage tool. Ideally, I'd be able to easily integrate with continuous builds. I am looking for something that I can run cross-platform, but Windows-only tools may ...
31
votes
5answers
4k views

Perl build, unit testing, code coverage: A complete working example

Most Stackoverflow answers that I have found in regards to the Perl build process and unit testing and code coverage simply point me to CPAN for the documentation there. There's absolutely nothing ...
22
votes
11answers
4k views

Free Testing / Code Coverage systems for C++

I'd like to start using a Test Driven Development system for a private project since I saw my employer using it and realized it was very useful. My employer's project was in C# but mines are in C and ...
21
votes
13answers
1k views

Pitfalls of code coverage

I'm looking for real world examples of some bad side effects of code coverage. I noticed this happening at work recently because of a policy to achieve 100% code coverage. Code quality has been ...
21
votes
5answers
12k views

Getting PartCover to work

I want to try PartCover for code coverage. I'm running Visual Studio 2008 Professional with MSTest. The Professional Edition does not include the Team Testing tools, like Code Coverage. So, I'm ...
17
votes
3answers
7k views

Exclude code from code coverage with Cobertura

Is there a way to exclude code from inclusion into Cobertura coverage reports? We have some methods that should not be include in the coverage report and therefore not drive down the coverage numbers. ...
16
votes
2answers
499 views

What is the branch in the destructor reported by gcov?

When I use gcov to measure test coverage of C++ code it reports branches in destructors. struct Foo { virtual ~Foo() { } }; int main (int argc, char* argv[]) { Foo f; } When I run ...
16
votes
15answers
2k views

Should one test internal implementation, or only test public behaviour?

Given software where ... The system consists of a few subsystems Each subsystem consists of a few components Each component is implemented using many classes ... I like to write automated tests of ...
16
votes
6answers
5k views

Code Coverage and Unit Testing of Python Code

I have already visited Preferred Python unit-testing framework. I am not just looking at Python Unit Testing Framework, but also code coverage with respect to unit tests. So far I have only come ...
15
votes
2answers
365 views

PostSharp and Visual Studio Code Coverage

I've recently started using PostSharp in some of my projects and have noticed an unfortunate side effect - the code coverage in all the projects its used with drops significantly. I'm guessing the ...
15
votes
5answers
3k views

Code Coverage Tools for Scala

What are the available code coverage tools for Scala? I have Scala spec tests and a Hudson continuous integration set-up. Is there something I can hook-in to this setup to measure and track code ...
15
votes
2answers
1k views

Is mutation testing useful in practice?

It exists the technology of mutation testing. It checks, if the tests are running even if you change the code. If not all is OK, if the tests are running they don't cover all eventualities. There is ...
14
votes
4answers
505 views

How do I exclude types and methods from being covered by dotCover in TeamCity 6?

I've got an existing C# 4 project which I've checked the test coverage for by using TestDriven.Net and the Visual Studio coverage feature, i.e. Test With -> Coverage from the context menu. The ...
14
votes
5answers
2k views

Measuring code coverage in Delphi

Is there any way to measure code coverage with DUnit? Or are there any free tools accomplishing that? What do you use for that? What code coverage do you usually go for? Jim McKeeth: Thanks for the ...
14
votes
14answers
4k views

What is your favourite code coverage tool(s)? (Free and non-free)

What is your favourite code coverage tool(s) (free/non-free) and how do you use them effectively? There are several options available, such as: CodeCover Coverlipse Emma / EclEmma Atlassian Clover ...
13
votes
1answer
688 views

How can I run Devel::Cover under mod_perl2?

Unfortunately, Devel::Cover does not yet work with threads. It doesn't work with prefork either. Being use'd in startup.pl, Devel::Cover issues Not a CODE reference. END failed--call queue aborted. ...
13
votes
4answers
3k views

Why doesn't gcov report any lines being covered by my unit tests?

I am using Xcode 3.2 on 10.6, with the shipped version of gcov and default GCC compiler (both version 4.2.1). I have created a dependent Cocoa unit test bundle which is injected into my app, and ...
13
votes
6answers
898 views

condition coverage in python

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".
12
votes
4answers
452 views

What's the best C++ code coverage tool that works with templates?

I have used gcov for testing code coverage, but when it comes to templated c++ code it doesn't work so well. I use boost::spirit extensively and gcov seems to simply ignore templated spirit code. ...
12
votes
2answers
135 views

Finding unused Django code to remove

I've started working on a project with loads of unused legacy code in it. I was wondering if it might be possible to use a tool like coverage in combination with a crawler (like the django-test-utils ...
12
votes
1answer
1k views

NCover vs dotCover

I'm configuring continuous integration enviroment with TeamCity and has to select some code coverage tool. The main candidates I'm selecting from are dotCover, partCover and NCover. The only one ...
12
votes
21answers
873 views

What type of errors could my code still contain even if I have 100% code coverage?

Looking for concrete examples or links to concrete examples of such errors. Thanks in advance.
12
votes
6answers
7k views

Code Coverage tools for PHP

Is there any code coverage tool available for PHP? I wish to check the code coverage of my code and API's written in PHP, but have not been able to lay my hands on any code coverage tool for PHP, as ...
11
votes
4answers
1k views

Testng, Emma, Cobertura, coverage and JDK 7 result in ClassFormatError and VerifyError

I have switched to the newest JDK 7 and I am having problems with running testng unit test on byte code that is fiddled by emma coverage tool. None of my test cases are run correctly and for most of ...
11
votes
4answers
1k views

Is there a free code coverage tool suitable for use with .NET 4 and NUnit?

Is there a free code coverage tool suitable for use with .NET 4 and NUnit that runs from the command line (and is thus suitable for use on a build server)? Please note that any tools that require ...
11
votes
4answers
2k views

What are some code coverage tools for Perl?

Are there any good (and preferably free) code coverage tools out there for Perl?
10
votes
2answers
1k views

XCode - Code Coverage?

I need code coverage for my iphone app. Can anyone provide detailed information on how to get code coverage for Xcode 4? Thanks
10
votes
5answers
7k views

Running NUnit tests in Visual Studio 2010 with code coverage

We have recently upgraded from Visual Studio 2008 to Visual Studio 2010. As part of our code base, we have a very large set of NUnit tests. We would like to be able to run these unit tests within ...
10
votes
2answers
5k views

How to use EMMA code coverage in android

Im new to EMMA, i dont know how to use this for android system. Can anyone please give a sample for using this with android. Thanks a lot.
10
votes
7answers
1k views

Dead code detection in PHP

I have a project with very messy code - lots of duplication and dead code here and there. 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. ...
10
votes
3answers
6k views

Code coverage with nUnit?

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?
10
votes
13answers
895 views

Unit testing code coverage - do you have 100% coverage?

Do your unit tests constitute 100% code coverage? Yes or no, and why or why not.
10
votes
7answers
802 views

Getting Started with TDD?

We are in the initial phase of trying to implement TDD. I demo'd the Visual Studio Team System code coverage / TDD tools and the team is excited at the possibilities. Currently we use Devpartner for ...
10
votes
2answers
5k views

MSTest Code Coverage

Is there a way to test code coverage within visual studio if I'm using MSTest? Or do I have to buy NCover? Is the NCover Enterprise worth the money or are the old betas good enough if Microsoft ...
9
votes
7answers
3k views

Does VS2010 Code Coverage support nUnit?

According to this schema VS2010 Premium and Ultimate has a tool for checking Code Coverage - together with a few other testing tools. Does this support nUnit too, or just MS test?
9
votes
6answers
5k views

Java code coverage in Hudson

I'm migrating a couple of projects from an ant build to a maven one. The build server is , and will remain, Hudson. I've been having trouble recording code coverage in hudson with cobertura due to ...
9
votes
14answers
1k views

What can be alternative metrics to code coverage?

Code coverage is propably the most controversial code metric. Some say, you have to reach 80% code coverage, other say, it's superficial and does not say anything about your testing quality. (See Jon ...
8
votes
1answer
142 views

Reaching 100% Code Coverage with PHPUnit

I've been in the process of creating a test suite for a project, and while I realize getting 100% coverage isn't the metric one should strive to, there is a strange bit in the code coverage report to ...
8
votes
1answer
82 views

In rcov, is there a way to find which test method traversed a given line of code being tested?

In rcov, is there a way to find which test methods were tracked as having covered a given line of code (in your target code that you're testing)?
8
votes
1answer
811 views

jasmine with jscoverage automated testing

Had been looking at the jsunit and jcoverage demos here (click on coverage report link. Open this in a new tab). I was wondering if any one had done anything similar with Jasmine and JSCoverage ? I'm ...
8
votes
2answers
140 views

Code coverage tools for regexes?

Are there tools out there to measure code coverage of regexes? A tool that given a regex and a list of input strings, tells you which parts of the regex are exercised, with measures analogous to ...
8
votes
3answers
688 views

How do I tell gcov to ignore un-hittable lines of C++ code?

I'm using gcov to measure coverage in my C++ code. I'd like to get to 100% coverage, but am hampered by the fact that there are some lines of code that are theoretically un-hittable (methods that are ...
8
votes
5answers
2k views

Why does Visual Studio say “Code Coverage is not enabled for this test run” when it's enabled?

In Visual Studio, I just created a simple Unit Test to test a method I wrote. I wanted to check the code coverage, but the Code Coverage window only ever states that "Code Coverage is not enabled for ...
8
votes
15answers
536 views

How to interpret 'test every scenario you can think of'

I was recently tasked to, "Test every scenario you can think of and try to break the component" What might be sensible in 'everything' when the application is a website? NOTE: This particular site ...
8
votes
2answers
379 views

Code Coverage and Blame

Has anyone seen a tool that will integrate code coverage results with SCM/VCS to attribute untested lines of code to developers? For example, is there a tool that will take NCover's Coverage.Xml, ...

1 2 3 4 5 14