The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
38 views

Is unit and component testing sufficient?

If you can test every line of [your product's] code via unit tests, wouldn't unit testing alone (theoretically) be sufficient? Are there other "necessary" benchmarks of proper test coverage other ...
4
votes
5answers
199 views

Recommendations for code coverage tools?

I have a wishlist for code coverage tools and am wondering if people could recommend some tools that fulfill all or many of my wishes. I am starting my search for tools that work specifically with ...
2
votes
2answers
60 views

Dynamic whitebox testing and coverage metrics for Java systems?

What coverage measures/metrics are useful for unit testing and for integration testing of Java or other object-oriented systems? Context: We would like to establish a better test process. Our ...
4
votes
1answer
188 views

How does Bullseye code coverage tool work?

I'm using Bullseye code coverage tool. It's great. I'm interested in knowing it's internal functioning. How does it actually work?
1
vote
1answer
73 views

Quality Center: How to check if a test is already included in any requirement [closed]

How can I check that a specific Test Case is already included in any of the existing requirements? Currently I see no other way rather than going through all the requirements and trying to locate this ...
1
vote
1answer
141 views

What is a good code coverage tool for Ruby?

I would really like to see which bits of code/functionality I've missed testing in my application, which is a mix of Ruby and JQuery and Java applets. Years ago I used a nice code coverage tool for C ...
2
votes
4answers
399 views

Good resource on how to write dot net unit test cases?

I am looking for good resources on how to write good unit test cases in C#/Dot Net. Books, resources on the net or simply good advises. In particular the unit cases should give good code coverage and ...
7
votes
1answer
526 views

Continuous Integration and testing environment and configuration for Android

I am an Android developer but I am not satisfied with my testing and Continuous Integration environment and configuration. Someone could recommend me how to configure the best setup and workflow for ...
7
votes
4answers
180 views

Should coverage analysis be performed on test code?

I'm of the opinion that it should. Test code is meant to be deterministic. This means that 100% of it should be executed. If it's not 100% (and assuming the analysis tool isn't under-reporting), ...
5
votes
3answers
236 views

How should I test the output of image renderers thoroughly, efficiently and in a branchable way

I am trying to improve the tests for a bunch of renderers that generate 2D images, and I am looking for advice and ideas for testing that are both efficient and thorough but also branch friendly. All ...
4
votes
3answers
260 views

What types of testing are LEAST suited to using pairwise testing (and similar test design approaches)?

For those of you who have used pairwise test design methods (or similar combinatorial software testing methods) in an attempt to zero in on a manageable number of unusually powerful tests from among a ...
8
votes
4answers
407 views

How can I report coverage on an n-dimensional test matrix?

I have a test matrix for my product's installation, which is n-dimensional, where n is about 11 or 12 at this point. For instance, the OS is one dimension, and the DB is another, and the Reporting ...
3
votes
2answers
345 views

Python coverage and external executables

I have a project that has almost complete unit test coverage. There's only one statement that isn't covered and I can't work out a good way to do so. Say the project is called foo, I have ...