Martin Hare Robertson

Results 40 comments of Martin Hare Robertson

According to http://docs.oracle.com/javase/tutorial/java/javaOO/annotations.html you can only attach an annotation to a declaration so my example above would be impossible with annotations: ``` @jacocoOff // because this case is simpler to...

In my experience testable elements are often quite small and hence using a method would be overkill. Worse, in cases like catch blocks it would be tricky to sensibly separate...

@marchof I am definitely going to try and add a filter to handle this case. Are you interested in reviewing my changes as I work on them or do you...

@marchof I have already forked: https://github.com/mchr3k/jacoco I'll bear in mind your warnings about keeping the implementation generic and performant :)

I prefer a solution which uses code comments as this doesn't introduce pointless method calls into production code and it doesn't add an extra dependency to production code.

Can you describe what I need to do to correctly add any new dependencies to JaCoCo? For example I would like to use commons-io to read source files.

@Godin I'm happy to respect that since this isn't my project but I would be curious to know why you don't want to add dependencies? The alternative is that JaCoCo...

Hi eostermueller, Thanks for this feature suggestion (and the other two you raised). I am pleased to see that you are interested in InTrace. Can you give me a bit...

> > How much InTrace functionality relies on "retransforming" ? The dynamic selection of which classes to trace at runtime depends on retransforming. However, it would be possible to modify...

Currently only jars are supported. I'll try and take a look at this case at some point.