3
votes
2answers
118 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
48 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 …
1
vote
0answers
33 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
72 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
59 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. …
8
votes
12answers
313 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
3answers
95 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
0answers
14 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.
0
votes
1answer
27 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 …
1
vote
1answer
60 views
Acceptance Tests and Code Coverage
What is the best way to measure coverage for your Acceptance Tests??
How do you define how much your acceptance tests cover and when they are enough??
1
vote
1answer
49 views
FlexCover 0.81 throws ServicesDepdendency Error no matter what
I've used FlexCover quite a bit before so this is absolutely absurd to me. No matter what version of the flex sdk (3.0, 3.2, or 4) that I apply the appropriate patches too, I get t …
0
votes
2answers
19 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 …
2
votes
3answers
193 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 …
6
votes
4answers
243 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 …
1
vote
5answers
162 views
code coverage for C language?
Is there a tool for code coverage for C language.
I know there are many. But I wanted something like perl Devel::cover.
Where I get:
Line coverage
Branch Coverage
Condition cov …
