Is there any Eclipse plug-in that provides code coverage directly in the Eclipse JAVA editor, like eCobertura or EclEmma , but runs tests using the Maven test target (i.e. mvn test )?
I need to specify a Maven profile to filter some properties (i.e. mvn -Pdev test ), but the two solutions above do not allow us to work with Maven (AFAIK).
PS: I know that I could use the clean site Maven targets (i.e. mvn -Pdev clean site ) or the Cobertura Maven plugin (i.e. mvn -Pdev cobertura:cobertura ) to get a code coverage report, but I I would like to get coverage directly inside the Eclipse JAVA editor. Convenience addict.
sp00m source share