2
votes
2answers
317 views

Determining which test cases covered a method

The current project I'm working on requires me to write a tool which runs functional tests on a web application, and outputs method coverage data, recording which test case traversed which method. ...
1
vote
1answer
302 views

Android JUnit: Define a different Application subclass

So for my normal Android project, I have the following in AndroidManifest.xml: <application android:name=".utilities.App" ...> .... </application> And then I have my App class: ...
13
votes
1answer
2k views

eclemma - how to ignore source

I'm using junit/eclemma; it works great, except I'd like to instruct eclemma to ignore certain methods or classes. For example, how would i instruct eclemma to ignore getters/setters. Thanks in ...
5
votes
2answers
184 views

Coverage vs reachable code

Q: how to detect real test coverage ? I've noticed one problem with code coverage metric and test quality: 100% code coverage doesn't mean that code is really tested. Sometimes test gives 100% ...