0
votes
1answer
50 views
open source c++ code coverage for dynamic linked libraries in linux
I'm recently looking for some tools for code coverage, lcov satisfied my needs until I discovered that it doesn't cover dynamic linked code, there are some commercial products but I'd rather stick to …
0
votes
1answer
20 views
Clover coverage with Phing
Is there a way to get Phing to output it's coverage report in clover format?
I know phpunit has --coverage-clover but I don't know how to enable this option from Phing.
I do not want to manually use …
0
votes
0answers
16 views
Highlight text from Visual Studio 2008 add-in
Hi, guys!
I'm writing another code coverage tool for .NET with Visual Studio 2008 integration.
Everything goes well except one thing: I can't find a way to highlight some code chunks.
I need it to …
5
votes
6answers
135 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. …
0
votes
3answers
56 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
4answers
82 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 …
2
votes
2answers
53 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?
1
vote
1answer
64 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
1answer
45 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 & …
0
votes
1answer
28 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
1answer
75 views
Code coverage using mono and nunit tests
Hello,
I'm trying to test a file (Account.cs) using testfile (AccountTest.cs). I run OSX 10.6 with Mono Framework (and nunit-console).
Below is Account.cs
namespace bank
{
using System;
…
3
votes
2answers
150 views
What is a good, free C# unit test coverage tool?
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 …
8
votes
12answers
341 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.
3
votes
4answers
129 views
Code coverage tools for Symbian C++ and Maemo
What code coverage tools have you used with Symbian C++ and Maemo? What are the pros and cons of the tool you are using?
3
votes
4answers
92 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 …
