I am trying to target a fairly large class that uses many small components. At the moment, I have no idea how many of the smaller components are tested per unit.
Is there a tool or method for displaying all unverified dependencies [plus subdependencies] that are used in a larger class?
I understand that I can make a complete coverage of the project code, and that I can create a list of all tested components. However, what can I do to see this in perspective of this separate class?
Why am I asking about this? It would be ineffective if this test case were written without subcomponents to test their methods.
I am currently using:
- JUnit 4.11
- Java
- JaCCO [emma compatible]
source
share