27
votes
22answers
1k 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 …
26
votes
10answers
2k 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 …
19
votes
11answers
3k 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 …
17
votes
13answers
614 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 …
17
votes
5answers
915 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 …
16
votes
10answers
1k 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 …
10
votes
21answers
668 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.
9
votes
5answers
2k 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.
$299 for the 64-Bit …
9
votes
1answer
459 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 …
9
votes
4answers
563 views
What are some code coverage tools for Perl?
Are there any good (and preferably free) code coverage tools out there for Perl?
8
votes
12answers
357 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.
8
votes
7answers
266 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 …
8
votes
14answers
362 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
6answers
338 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".
7
votes
15answers
305 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 …
