1
vote
1answer
33 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
4answers
71 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 th …
1
vote
1answer
34 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
1answer
25 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 la …
3
votes
2answers
135 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, a …
1
vote
3answers
72 views
Java: measure code coverage for remote scripting tests
We have an application which is deployed on JBoss 5.1, JDK 1.6.
We also have scripts written in PowerShell for testing. These scripts access the application using a web-service.
I …
2
votes
2answers
28 views
is there a code-coverage tool for the TSQL sproc unit tests?
I am looking for a unitttest and code-coverage tool for TSQL sprocs. Can anyone recommend a good one? Commercial or free.
8
votes
12answers
329 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
106 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?
1
vote
1answer
48 views
Setting up gcov in Xcode 3.1
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 …
2
votes
4answers
221 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 …
0
votes
2answers
73 views
How to decorate a class as untestable for Code Coverage?
Hi,
Background: Visual Studio 2008, C#, .Net 3.5.
I have a number of utility classes that are simply not unit-testable. This is mainly because they interact with resources (e.g. …
1
vote
0answers
50 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
{
…
0
votes
1answer
76 views
Full code coverage
I'm trying to obtain full code coverage for the following line of code...
stringWriter.Write(HtmlEncodedString.Format(string.Format("{0,-10:C}", x + y)))
The line above this one …
0
votes
2answers
30 views
Where is CoverageEye ? Or another free code coverage tool for .Net …
Hi all,
I was looking for CoverageEye that was available on gotdotnet. But after closing, I'm unable to find it elsewhere.
Do you know more about it ?
Or another good code cove …
