Activity for EMMA code coverage

  • dee dee posted a comment on ticket #129

    Hi Sakshi, Ran into same issue, Can you help how did you get pass through this error Thanks in Advance. -Dee

  • dee dee posted a comment on ticket #129

    Hi Sakshi, Ran into same issue, Can you help how did you get pass through this error Thanks in Advance. -Dee

  • dee dee posted a comment on ticket #39

    Hi Sakshi, Ran into same issue. How did you pass through this error. Thanks in advance, -Dee

  • sakshi sakshi created ticket #129

    Caused by: java.lang.IllegalStateException: CONSTANT_info: invalid tag value

  • sakshi sakshi modified a comment on ticket #39

    Hi, I am trying to instrument class files using emma with jdk 1.8 to get code coverage of my project. using command- java -cp emma.jar emma instr -ip . -m overwrite -verbose However, getting below error- emma instr: unexpected failure: Exception in thread "main" com.vladium.emma.EMMARuntimeException: unexpected failure: at com.vladium.emma.Command.exit(Command.java:237) at com.vladium.emma.instr.instrCommand.run(instrCommand.java:178) at emma.main(emma.java:40) Caused by: java.lang.IllegalStateException:...

  • sakshi sakshi posted a comment on ticket #39

    Hi, I am trying to instrument class files using emma with jdk 1.8 to get code coverage of my project. using command- java -cp emma.jar emma instr -ip . -m overwrite -verbose However, getting below error- emma instr: unexpected failure: Exception in thread "main" com.vladium.emma.EMMARuntimeException: unexpected failure: at com.vladium.emma.Command.exit(Command.java:237) at com.vladium.emma.instr.instrCommand.run(instrCommand.java:178) at emma.main(emma.java:40) Caused by: java.lang.IllegalStateException:...

  • rohit payasi rohit payasi posted a comment on discussion Developers

    Hi I am using Emmarun(java emmarun -cp . myApp.jar) to generate code coverage report for my project but its not working with java8. getting below error: EMMA: no metadata collected at runtime [no reports generated] [EMMA v2.1, build 5214 (stable)] emmarun: [MAIN_CLASS_NOT_FOUND] application class [myApp.jar] could not be loaded

  • Aloys寒风 Aloys寒风 posted a comment on ticket #10

    I have merge this patch on: https://github.com/jiangxincode/Emma/commit/4a7040b2768a56901d41413687f820758b6464f4 So I think this issues should be closed.

  • vicush vicush posted a comment on discussion Developers

    You must be using some lambda expressions or stream api of Java 8. What helped me out of this mess is compiling my code with Java 7 to find those places and then you can either exclude them from instrumentation or re-write them without Java 8 :( Check this out https://stackoverflow.com/questions/30313255/reflections-java-8-invalid-constant-type

  • Krzysztof Krzysztof created ticket #126

    Java 11 Compatibility check: EMMA

  • Kiran Kumar Kiran Kumar posted a comment on discussion Developers

    while integrating EMMA with Gradle i am facing this issue. java.lang.IllegalStateException: CONSTANT_info: invalid tag value [18] Do we have any solution for this issue please let me know. here is the script : apply plugin: "emma" configurations{ emma } dependencies{ emma "emma:emma:2.0.5312" emma "emma:emma_ant:2.0.5312" } def emmaConvention = new EmmaPluginConvention(project) project.convention.plugins.emma = emmaConvention class EmmaPluginConvention{ def verbosityLevel = "info" def reportPath;...

  • Vishal 23 Vishal 23 posted a comment on discussion Open Discussion

    Hello, I would like to do code coverage of big java application, where around 500 jars file exists. Facing issue now. Can someone help me for this: Mode: Offline Instrumentation After executing below command, throwing this exception: command: java -cp emma.jar emma instr -m overwrite -cp app1.jar Error: Exception in thread "main" com.vladium.emma.EMMARuntimeException: unexpected fai lure: at com.vladium.emma.Command.exit(Command.java:237) at com.vladium.emma.instr.instrCommand.run(instrCommand.java:178)...

  • Neha Neha posted a comment on discussion Open Discussion

    Hi Team, I am fetching emma coverage report however line coverage is not appearing in same. Can anyone please suggest any solution for same ? I am getting class %, method % , block % only.

  • rajendra rathore rajendra rathore created ticket #128

    Java 9 compatibility check

  • Anonymous modified a comment on ticket #96

    Hi, Is there any workaround for this? I'm facing the same problem when I use antlr...

  • Anonymous modified a comment on ticket #96

    Hi, Is there any workaround for this? I'm facing the same problem when I use antlr...

  • Anonymous modified a comment on ticket #96

    Hi, Is there any workaround for this? I'm facing the same problem when I use antlr...

  • tingsu tingsu posted a comment on discussion Open Discussion

    Hi the EMMA world, Can Emma dump the execution traces of methods when a test case...

  • Andreas Andreas posted a comment on discussion Developers

    I'm afraid Emma doesn't reliably work work with Java 8. We switched to Jacoco. I...

  • Bill Smith Bill Smith posted a comment on discussion Developers

    I'm trying to use Emma to instrument so unit test code that runs with a just TestNg...

  • barry mcgillin barry mcgillin posted a comment on discussion Developers

    java -XX:-UseSplitVerifier emmarun -cp . Test

  •  modified a comment on discussion Developers

    as mentioned, I have a jar file with nested jars inside. I need to instrument the...

  • Henrik Schole Henrik Schole modified a comment on discussion Developers

    as mentioned, I have a jar file with nested jars inside. I need to instrument the...

  • Henrik Schole Henrik Schole modified a comment on discussion Developers

    as mentioned, I have a jar file with nested jars inside. I need to instrument the...

  • Henrik Schole Henrik Schole modified a comment on discussion Developers

    as mentioned, I have a jar file with nested jars inside. I need to instrument the...

  • Henrik Schole Henrik Schole posted a comment on discussion Developers

    as mentioned, I have a jar file with nested jars inside. I need to instrument the...

  • Jet.Li Jet.Li posted a comment on discussion Developers

    Emma don't work in iava 1.7, how to make it? my env is: jdeMacBook-Pro:etc lijing$...

  • Jiaojiao Jiaojiao posted a comment on discussion Open Discussion

    Hi everyone, I try to instrument Android app with Emma. My steps are as follows:...

  • Henrik Schole Henrik Schole posted a comment on discussion Developers

    yes this was the problem. Thanks for the quick response!

  • Henrik Schole Henrik Schole posted a comment on discussion Developers

    easy :) the output looks much better now. thanks!

  • Andreas Andreas posted a comment on discussion Developers

    Without looking at my build.xml files... I guess merge should be true in: <jvmarg...

  • Marc R. Hoffmann Marc R. Hoffmann posted a comment on discussion Developers

    Hi, this is because you fork a new JVM for every test (fork="true") and you ask EMMA...

  • Henrik Schole Henrik Schole posted a comment on discussion Developers

    The example ant target at the bottom instruments and executes all tests of the directory...

  • yshuail yshuail posted a comment on discussion Open Discussion

    an Exception is occured at line 96,and line 94,95 is not covered,bug line 94,95 should...

  • Anonymous modified a comment on ticket #96

    Hi, Is there any workaround for this? I'm facing the same problem when I use antlr...

  • Anonymous modified a comment on ticket #96

    Hi, Is there any workaround for this? I'm facing the same problem when I use antlr...

  • Anonymous modified a comment on ticket #96

    Hi, Is there any workaround for this? I'm facing the same problem when I use antlr...

  • Anonymous modified a comment on ticket #96

    Hi, Is there any workaround for this? I'm facing the same problem when I use antlr...

  • Anonymous modified a comment on ticket #96

    Hi, Is there any workaround for this? I'm facing the same problem when I use antlr...

  • Vikas Vikas posted a comment on discussion Developers

    I am compiling my code as below, mvn -Dmaven.compiler.debug=true -Dmaven.compiler.debuglevel=lines,vars,source...

  • Bobby Bobby modified a comment on discussion Open Discussion

    Was this ever fixed or resolved? i'm having this same problem -.-

  • Bobby Bobby posted a comment on discussion Open Discussion

    Wwas this ever fixed or resolved? i'm having this same problem -.-

  • joshzhu joshzhu modified a comment on discussion Open Discussion

    Hi there, I am new to emma and my team want to use emma to collect coverage data...

  • joshzhu joshzhu posted a comment on discussion Open Discussion

    Hi there, I am new to emma and my team want to use emma to collect coverage data...

  • Ravi Ravi modified a comment on discussion Open Discussion

    Hi I have a class ABC that uses 2 enum variables num1 and num2 I have written test...

  • Ravi Ravi posted a comment on discussion Open Discussion

    Hi I have a class ABC that uses 2 enum variables num1 and num2 I have written test...

  • Anonymous modified a comment on ticket #96

    Hi, Is there any workaround for this? I'm facing the same problem when I use antlr...

  • Mukesh Rustagi Mukesh Rustagi posted a comment on discussion Open Discussion

    Hi, We have some batch jobs. When we trigger the parent batch job, it forks some...

  • Alexandre Locci Martins Alexandre Locci Martins posted a comment on discussion Open Discussion

    I will. Thank you (Obrigado) 2013/12/11 ivan dell'oro dell34@users.sf.net Try to...

  • ivan dell'oro ivan dell'oro modified a comment on discussion Open Discussion

  • ivan dell'oro ivan dell'oro posted a comment on discussion Open Discussion

    Try to export the jar form the edited source code!it's very easy with eclipse, see...

  • ivan dell'oro ivan dell'oro posted a comment on discussion Open Discussion

    Try to export the jar form the edited source code!it's very easy with eclipse, see...

  • ivan dell'oro ivan dell'oro posted a comment on discussion Open Discussion

    Found a solution using CtlProcessor ctl=CtlProcessor.create(); ControlRequest[] cr=new...

1