Tagged Questions

3
votes
4answers
91 views

Code coverage tools in Java

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 …
3
votes
6answers
280 views

Best strategy to get coding prepared for unit testing

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 …
5
votes
6answers
125 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. …
2
votes
2answers
49 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?
0
votes
2answers
65 views

Why does Module::Build’s testcover gives me “use of uninitialized value” warnings?

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 …
1
vote
2answers
1k views

Maven2 Multiproject Cobertura Reporting Problems During mvn site Build

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, …
0
votes
3answers
171 views

Getting ClassFormatError with EMMA?

I'm trying to generate code coverage reports with EMMA using tests of which some use JMockit as a mocking framework. For the most part, it works, but a few of my tests crash with a ClassFormatError, …
0
votes
3answers
55 views

how can I get test coverage statistics for VS2008 C# project

Hi, 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?). What is the …
0
votes
1answer
38 views

Cobertura ant script is missing Log4J classes

I tried to get Cobertura running inside my ant script, but I'm stuck right at the beginning. When I try to insert the cobertura taskdef I'm missing the Log4J libraries. Ant properties & …
1
vote
1answer
60 views

How to omit using python coverage lib ?

I would like to omit some module that are in some particular directory : eggs and bin coverage -r -i --omit=/usr/lib/,/usr/share/,eggs,bin Name …
0
votes
3answers
58 views

Where can I find code profiling and/or code coverage modules that work with mod_perl2?

Is there a way to get this functionality under mod_perl2? 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 …
3
votes
3answers
293 views

Is it possible to measure function coverage with gcov?

Currently we use gcov with our testing suite for Linux C++ application and it does a good job at measuring line coverage. Can gcov produce function/method coverage report in addition to line …
0
votes
4answers
77 views

Getting suggestions on how to get the best code coverage in java

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 …
0
votes
1answer
27 views

run unit tests and coverage in certain python structure

Hi, I have some funny noob problem. I try to run unit tests from commandline: H:\PRO\pyEstimator>python src\test\python\test_power_estimator.py Traceback (most recent call last): File …
2
votes
4answers
231 views

Open source C++ Code Coverage tool with GUI?

Do you know any Open source C++ Code Coverage tool that support a decent GUI to facilitate browsing the result? Thanks. EDIT: I forgot to mention, My code is developed Using MFC so I need a tool …

1 2 3 4 5 11 next
15 30 50 per page