EMMA is an open-source toolkit that measures and reports the percentage of Java code covered by unit tests.

learn more… | top users | synonyms

0
votes
0answers
12 views

“EMMA: nothing to do: no metadata found in any of the data files” while creating coverage.html in android with Emma

I have created coverage.ec file in android emulator and able to view the file, but not able to read the conents.According to my knowledge, we can see the coverage only after generating coverage.html ...
0
votes
0answers
46 views

Generate code coverage reports for Android Maven Library Project

I have a Android Library project and an Android Test project. The test project has Android dependency and junit dependency. The modules are: MyProject MySample MyProjectTest MySample uses ...
0
votes
0answers
52 views

NullPointerException thrown in Emma if emma:emma started from Sonar; code with Lombok

I have a Maven project which uses Emma and Sonar. Everything was OK and worked till that time, I have set up Lombok project and used a couple of @Getter and @Setter annotations. Now, if I type mvn ...
0
votes
0answers
37 views

Code coverage using Emma for a maven project and tests being part of an ant project

I was doing code coverage using Emma. My source code is a maven project whose java files I compiled using mvn clean install. My tests are part of an ant project and am unable to generate coverage of ...
1
vote
2answers
70 views

No runtime coverage using emma, junit and ant

I have the following project structure: src/com/dummy/abc.java src_tests/come/dummy/abcTest.java build.xml I need to check the coverage of my code done by tests using emma. From reading the emma ...
0
votes
0answers
18 views

NPE when using EMMA Plugin in eclipse

When I install the latest version of EMMA (2.2.0.201210261515) and execute Coverage As - Plugin Test, I am getting the following exception (happens on both INDIGO and JUNO) ...
0
votes
1answer
40 views

Organization of tested code and test cases in mavenized Android projects

I have an Android application, which is built by Maven and now I want to measure unit test coverage. I tried Cobertura, but there was a problem, which I couldn't fix. Therefore, I want to switch to ...
1
vote
0answers
16 views

Emma unable to find CTL hence unable to do ForceDump

I downloaded emma 2.1.5320 from https://sourceforge.net/projects/emma/files/emma-testing/2.1.5320/. Then did instrumentation for a jar file and started the application. Then tried to dump the coverage ...
0
votes
1answer
22 views

How can I filter an if block from emma?

Is it possible to filter out an if block that belongs to a java class from emma coverage report? If yes then how can I achieve it?
0
votes
1answer
82 views

EMMA coverage.ec not generated

I want to know the code coverage of a website running on tomcat apache.I have tried many times to get the coverage.ec file. But it is not coming. Steps followed: Copied emma.jar into classpath ...
0
votes
0answers
39 views

Emma not recording line coverage even though it executed

Am using emma for recording code coverage. Am particularly interested in the line coverage (or line %) We are planning to increase the line coverage for our source code thru' automation. We first ...
0
votes
1answer
115 views

Emma does not display uncovered packages in the report

I am using maven with emma to generate coverage report on linux red hat. After I run command mvn emma:emma, packages which are not covered by JUnit tests are not displayed in the report. I am using ...
1
vote
0answers
30 views

Cross-module EMMA coverage in Maven

I'm unfortunately very unfamiliar with both Maven and EMMA. As such, searching this site and Google has yielded results where I'm not completely certain if they apply to my situation, and even if so, ...
0
votes
1answer
81 views

Free alternatives to Atlassian Clover?

Reasking my older question: Java test coverage: who covers what? Background: I look at sonar's coverage report for a class and want to know, which test contributes to the coverage of a specific ...
0
votes
1answer
27 views

Emma does not recognize [ctl] command in Java7

I am using the latest version of Emma i.e. 2.0.5312 and Java 7. If I run the following command to get the coverage.ec on the fly, I get an error. java emma ctl -connect localhost:47653 -command ...
0
votes
0answers
20 views

EMMA does not detect test' end of execution

I have emma.jar set up correctly and I get coverage reports with JUnit tests within eclipse. But when I try to get code coverage reports of manual tests on a dynamic web application, I instrument the ...
0
votes
0answers
63 views

No class found exception after instrumenting with EMMA

When I try to launch my jsf 1.2 project after instrumenting my .class file with emma, and adding emma.jar to the classpath, and placing it in first order. I get the error ...
0
votes
1answer
75 views

emme:emma get the following error (Jenkins)

I'm running a job that instrumant Code Coverage on a jenkins machine Server The job is running the command: emme:emma and keep failing when it try to download dependencies from the maven repo: you ...
0
votes
0answers
108 views

Setting up emma plugin fails all tests in Jenkins build?

I have tried setting up the Emma plugin for Jenkins as instructed in the plugin's home page: https://wiki.jenkins-ci.org/display/JENKINS/Emma+Plugin My build is a simple Maven build and it's a Spring ...
0
votes
0answers
69 views

exclude a class from instrumentation with EMMA via comand prompt

I am generating code coverage reports with EMMA, covering classes in a dynamic web project. To do that, I use the command in comand prompt java -cp emma.jar emma instr -m overwrite ...
0
votes
1answer
133 views

Code coverage for GUI based functional tests

I am trying to get bytecode coverage analysis using a code coverage tool (like Emma or Jacoco) after testing with a GUI based functional testing tool (like HP QuickTest Pro or Selenium). Anyone who ...
2
votes
1answer
75 views

On-the-fly code coverage for a Maven project in Eclipse?

Is such a thing possible? To explain: I'm on a project where the Acceptance Tests are being run in a bespoke way from an actual webpage rather than as part of one of Maven's test phases. It's a long ...
1
vote
1answer
36 views

Calculating android test coverage with new Google Play API

I have a new app that is using Google Cloud Messaging (GCM) and therefore the new Google Play API. Because the Google Play API does not run in an emulator only on a actual device I am so far unable ...
1
vote
0answers
41 views

static initializer interfering with emma

I've written a class that has every line covered through JUnit/emma (its a fairly basic class). Emma's eclipse output shows all lines in green (covered). However, emma's report (HTML) shows that I've ...
0
votes
1answer
139 views

Eclipse EclEmma missed instructions

I'm using Eclipse-STS + EclEmma plugin to see coverage of my code. In all my abstract util classes (with only static methods) I see 3 missed instructions (Instructions Counter report) at the class ...
0
votes
0answers
56 views

How to instrument WAR using EMMA

I was able to instrument jars successfully using EMMA. But how do we instrument WARS using EMMA command line?
0
votes
0answers
59 views

Measure unit code coverage % for function/method on Cyclomatic Complexity?

Is there an approach to collect/report on unit test coverage based on a complexity ratio such as Cyclomatic Complexity on a method/function level? The reason/intent is to provide a measurable metric ...
0
votes
0answers
124 views

Eclipse (SpringSource Tool Suite) Maven Builder vs. m2 build… and Coverage Tools (EMMA or Jacoco)

I'm trying to add some tools, namely code coverage, to a project. I've tried to add both EMMA and Jacoco. Before adding these tools, I can build within the IDE (Project -> Clean) and from ...
0
votes
0answers
28 views

EclEmma shows tests passing at package level but not when run at TestSource level

When running EclEmma for a particular package or class, our JUnit tests are passing as expected. When running it on the entire project, the majority of the tests are passing but some of the tests ...
0
votes
0answers
80 views

Android jUnit: To check code coverage in non rooted devices

I am able to determine android jUnit code coverage using EMMA in emulator and rooted device, but is there any way to check code coverage in non-rooted devices?
0
votes
1answer
436 views

Jenkins runs maven goals differently

I use maven to build project and do static analysis of code. However when I run those command in Jenkins job, reuslt is different. Locally $ mvn emma:emma pmd:cpd pmd:pmd javadoc:javadoc Then I ...
0
votes
1answer
68 views

Maven emma has error but the tests are passing

my junit test are passing when i am running mvn test but mvn emma:emma it has errors. How can i find out which classes are executed? The errors that i have are related to spring ...
3
votes
1answer
323 views

EMMA [MAIN_METHOD_NOT_FOUND] in Java 7

I have switched to the newest JDK 7 and I having a problem of running of emma code coverage using ant. It throws the following error: emma: [emmajava] EMMA: no coverage data collected at runtime ...
0
votes
1answer
77 views

EMMA report without stopping tomcat service?

How to get the Coverage.ec file in ECL EMMA without stopping the tomcat service??
3
votes
2answers
327 views

IntelliJ 12 code coverage not working in editor for GWT Projects

I'm trying IntelliJ 12, and I can't manage to get the line colored (red, green, yellow) in the editors after running the tests with coverage. Did anybody noticed the problem or it's just me not being ...
3
votes
0answers
124 views

Running Emma on Hudson results in JVM_Bind Exception

I am attempting to get Emma to run with one of my jobs on Hudson. I am using Hudson 2.2.0. I have the Emma plugin installed. I read a guide online, on how to configure Emma to run on Hudson - and it ...
4
votes
1answer
148 views

Android External Api Coverage is Not coming

I have been trying from past 1 month for deducing the Code coverage report of my Android Project which includes External Jars.(I am running on ADT20). Whenever I run ant emma debug install test ...
2
votes
0answers
136 views

Any coverage tool allows to ignore getters , setter, equals and hashcode?

We are currently using Cobertura but i can't figure out a way to exclude those methods. I tried Emma and clover as well which i couldn't find any way to do as well. Please , spare your "You should ...
2
votes
2answers
285 views

Generating android code coverage though changes in build.xml and ant.properties

I have been trying to generate android code coverage for my android test project which tests a android project which includes a external jar. When I run command ant emma install debug test it shows ...
3
votes
1answer
272 views

Jacoco-IntegrationTests code coverage

I am not able to get over this issue- I have 3 classes A B and C. A is a integration test class which tests classes B and C together. B and C are classes in another package(w.r.t class A) Now when ...
1
vote
0answers
35 views

EMMA: Retrieve source later if providing empty emma.sources and how to generate report from coverage.ec

So I refer "sourcepathref" of instr and report process to a path "emma.sources" which is supposed check for files in /src/. However, I need to ignore it for some reasons. So, my "emma.sources" ...
0
votes
0answers
133 views

Use the EMMA test the android unit test coverage, make some errors

When i user the EMMA test the android unit test coverage by device, make some errors: 。。。。 [exec] failed to copy '/data/data/com.gnet.meetme/coverage.ec' to 'coverage .ec': Permission denied 。。。。。 ...
0
votes
1answer
100 views

Merging jUnit coverage reports with EclEMMA plugin

I am measuring the code coverage in my project using the EclEmma plugin for Eclipse. This involves running the coverage for the whole project. But due to some dependency issues tests in some packages ...
0
votes
0answers
119 views

Commands to enable EMMA instrumentation for Android Project

The following web site gives detailed instructions on building an Android app from the command line: http://geosoft.no/development/Android.html If I want to enable EMMA instrumentation, for the ...
0
votes
0answers
50 views

Emma not recognizing that an anonymous inner class is being tested

I've got a class that spawns a thread and a test that validates the results. Emma isn't reporting code coverage for the thread even through I can step through in the debugger and see that it's being ...
0
votes
0answers
34 views

How do I keep enums off of an emma coverage report?

I've got an android project and a test project where I'm generating emma code coverage reports using ant. In my project I have some interfaces and some classes which contain enums. These show up as ...
1
vote
0answers
175 views

Error while using Emma in Eclipse for Android

I am trying to use Emma in Eclipse for instrumenting Android. The versions used goes like: Eclipse: 3.7.2 Android: 4.0.3 (ICS) Emma: 2.1.4 (taken from the eclemma.org) Unzipped the emma zip file ...
1
vote
1answer
168 views

Create Test Coverage for jar file using Junit and Emma with command prompt

I am provided with jar files which contains many classes without Main method. How to perform Test Coverage and generate results for all these classes using Junit and Emma ?? java -cp MyJar.jar;. ...
2
votes
1answer
220 views

How can I change the encoding of Emma's HTML reports?

I've been trying to get this to work for about 1.5 hrs now... I have Emma running within Jenkins and have Jenkins moving the Emma reports to the artifacts directory so they can be viewed within the ...
3
votes
1answer
157 views

Java code quality trending and stats (LOC, methods, etc.) trending

I've recently integrated Junit and Emma into CruiseControl (CC) so it creates nice reports per build. I'd like to see some trending graphs based on some of the info Emma gives like the coverage % ...

1 2 3 4