Tagged Questions

EMMA is an open-source toolkit for measuring and reporting Java code coverage.

learn more… | top users | synonyms

17
votes
3answers
12k views

How do I generate Emma code coverage reports using Ant?

How do I setup an Ant task to generate Emma code coverage reports?
16
votes
3answers
913 views

Code coverage for Android

Its really frustrating to see there is no documentation for how to use EMMA for Android apps in Eclipse. Has anyone managed to work with EMMA in eclipse for Android apps? Without checking out the ...
11
votes
4answers
1k views

Testng, Emma, Cobertura, coverage and JDK 7 result in ClassFormatError and VerifyError

I have switched to the newest JDK 7 and I am having problems with running testng unit test on byte code that is fiddled by emma coverage tool. None of my test cases are run correctly and for most of ...
9
votes
6answers
5k views

Java code coverage in Hudson

I'm migrating a couple of projects from an ant build to a maven one. The build server is , and will remain, Hudson. I've been having trouble recording code coverage in hudson with cobertura due to ...
7
votes
1answer
451 views

how can I clear coverage highlighting in eclipse

After I ran a coverage report in Eclipse (using cobertura or Emma plugin) my source code files get highlighted in green and red and yellow depending on code covered by tests or not. How can I clear ...
7
votes
8answers
2k views

How far do you take code coverage?

I've recently started using code coverage tools (particularily Emma and EclEmma), and I really like the view that it gives me as to the completeness of my unit tests - and the ability to see what ...
6
votes
3answers
529 views

Emma coverage on Enum types

I'm running EclEmma, the Emma plugin for Eclipse, and the coverage report shows only partial coverage for an Enum I've defined, even though it shows the only value in the Enum as being covered. I'm ...
5
votes
1answer
267 views

Why emma doesn't give full coverage to finally blocks?

I don't get why emma doesn't give full code coverage to "finally" blocks. I've made a short example program to demonstrate this. When I execute the program it shows: try finally So I don't get ...
4
votes
4answers
1k views

How do I get Emma or Cobertura, with Maven, to report coverage on source code in other modules?

I have a multi-module Maven setup with Java code. My unit tests, in one of the modules, exercise code in multiple modules. Naturally, the modules have inter-dependencies, and code in all relevant ...
4
votes
1answer
547 views

Scala ,sbt and emma or Cobertura

I want to use code coverage in Scala project,Simple Build Tool used as a build tool.What is the best one to use in this project.(I'm new to these technologies).Any one can tell me how to configure ...
4
votes
1answer
325 views

How to force Emma code coverage report to ignore some methods?

Some methods, such as auto-generated getters, setters, equals and toString, are trivial for test. However, if they aren't added into the testing classes, the code coverage percentage (calculated using ...
4
votes
3answers
358 views

Java : Which Code Coverage tool to use?

Here is what I want to do: 1) A running application has been instrumented. The byte code is clean - means that the tracing info should be added on the byte code level. 2) The running application ...
3
votes
1answer
79 views

Line Level Scala Coverage Reports w/ Emma / Ant

Are there any tricks that I need to use to get Line Level coverage reports working w/ Scala code using Emma? I can get it working w/ Java code fine, but for some reason the debug info is not getting ...
3
votes
1answer
683 views

Measuring integration test coverage with Maven

The followings are ok now: I have a multi-module project in maven with EJB and WAR projects I want to use JMeter (and later selenium) for integration testing. I can run both from Maven. The JMeter ...
3
votes
1answer
374 views

Ant build - Emma code instrumentation - JUnit tests need interfaces, Emma doesn't instrument them

I have an Ant build file where I compile the Java source code of the application and of the tests, instrument the application classes, run JUnit tests and generate JUnit and Emma code coverage ...
3
votes
1answer
621 views

eclEmma - full code coverage on class header?

I have a class that starts with: public class GeneralID implements WritableComparable<GeneralID>{ ... } And another that is: public class LineValuesMapper<KI, VI, KO, VO> extends ...
3
votes
2answers
540 views

Setting a Coverage Threshold using Emma and Ant

I'm using Emma in my ant build to perform coverage reporting. For those that have used Emma, is there a way to get the build to fail if the line coverage (or any type of coverage stat) does not meet ...
2
votes
0answers
36 views

Android/Emma coverage.ec output fails to import into EclEmma

I have successfully managed to get ant to build using the emma param and thus instrument my application. All the tests run correctly and the coverage.em and coverage.ec files get created. It even ...
2
votes
1answer
129 views

Partial EMMA code coverage in Scala Case Class for IntelliJ IDEA 10.5

I'm using IntelliJ IDEA 10.5 with the Scala plugin v0.4.1338 updated on August 14th, and Scala 2.9.0.1. I recently began using the EMMA test coverage utility in IDEA to generate coverage reports. I ...
2
votes
1answer
331 views

Measuring code coverage for selenium tests that reside in separate project

I have two separate java maven projects: one is my web app itself and other one is tellurium+selenium automation tests for my web(I moved these tests to separate projects as their code doesnt really ...
2
votes
1answer
177 views

Legend for colors used by the EMMA Code Coverage Report

Where can I find a legend for the default colors used by Emma for highlighting source code when a HTML coverage report is generated?
2
votes
2answers
934 views

emma not generating reports but cobertura does?

basic reason to put the comparison question between these 2 is I am able to generate the reports in site directory(for cobertura) after putting the following plug in information in build section of my ...
2
votes
3answers
757 views

ClassFormatError using JMockit with EMMA

I am trying to use EMMA to measure coverage of some JUnit tests that use JMockit. But when I try to run the JMockit tests after instrumenting with EMMA, about a quarter of the tests fail with the ...
2
votes
1answer
764 views

Emma doesn't embed source code to html report

I have a problem with Ant and Emma a code coverage plugin, it makes report, but without source code. I got following code in my build.xml init emma <taskdef resource="emma_ant.properties" ...
2
votes
3answers
360 views

Emma doesn't provide code coverage across projects

I was wondering if any of you EMMA users have encountered this issue. Basically I have multiple projects each with different build.xml ANT scripts that are all called from one main ANT script ...
2
votes
3answers
2k views

EMMA won't cover one of my projects

I have an issue with EMMA where it is correctly covering all my various Java projects except one. I am puzzled as to why this occurs as the ANT script appears to be correct. The following expected ...
2
votes
2answers
181 views

Why is a method call shown as not covered when the code within the method is covered with emma?

I am writing a unit test to check that a private method will close a stream. The unit test calls methodB and the variable something is null The unit test doesn't mock the class on test The private ...
1
vote
1answer
42 views

MSTest code coverage file is too big, How to selectively generate code coverage

I have an MSTest code coverage setup in my visual studio project. However, when the code coverage runs, it generates a coverage file (data. coverage) that is too big. The reason being it scans for ...
1
vote
1answer
152 views

Emma does not generate coverage.ec

I setup Emma and it used to work for me. Then we had source code changes and now it doesn't generate coverage.ec at all. It does generate coverage.em. Near the end of testing, it has error messages: ...
1
vote
1answer
87 views

How to tell Emma which test classes to use in a maven project

I have two sort of tests in my project. One of them is ending "Test", the other is ending with "IT". How can i tell emma that it should take all test classes in account? Kayser
1
vote
2answers
156 views

How does Emma work?

For using Emma we'll first instrument the jar using Emma. During that time em metadata files will get generated and when you run the JUnit test cases over the instrumented jars ec files will get ...
1
vote
1answer
249 views

Android app code coverage for manual testing

I am looking for a way to get EMMA code coverage with manual test. I mean, i don't want to write any unit test cases using the android test framework, instead i am looking for a way to instrument my ...
1
vote
0answers
62 views

Is there a way to show the emma code coverage percentage in the terminal?

I would like to see the emma code coverage percentage in the terminal, when I execute mvn emma:emma I don't need the full report. Just the code coverage percentage of project is enough for me. Is ...
1
vote
0answers
173 views

Web Service TEsting - Code Coverage

I'm using emma to testing coverage (applications, jsp pages, etc), but I can not do this with web services, is it possible with emma? or is there another tool for that? Thanks!
1
vote
1answer
194 views

Is there a way to transform lcov's coverage info file to be used with one of Hudson's coverage plug-ins?

I am generating test code coverage using lcov (a graphical gcov tool extension). The code is compiled using Hudson and a Publish HTML plug-in is used to show results report per build. I lack a trend ...
1
vote
0answers
372 views

EMMA ,Scala and Selenium

Hi I have configure EMMA with scala project(build tool is sbt).As I notice to create report I need use 2 files (coverage.em and coverage.ec) When run it 1) java emma instr -m overwrite -cp ...
1
vote
1answer
92 views

Why isn't this statement marked as completely covered by eclemma?

I am using EclEmma in Eclipse (more specifically, RSA 8). I have the following statement in my code: public static boolean isEmpty(Collection collection) { return (collection == null) || ...
1
vote
2answers
273 views

Why doesn't EclEmma cover syncronized(MyClass.class)?

I'm using EclEmma for coverage analysis. My Java code includes a synchronized(MyClass.class) {} block. EclEmma says it is only partially covered, event though I've got a unit test in which one ...
1
vote
1answer
326 views

How to calculate code coverage in Hudson using emma for a multi-module maven project but only run tests once

We have several multi-module projects which I want to run emma against, but I don't want the tests to be run twice, because this results in misleading statistics on the Hudson project home page as ...
1
vote
1answer
437 views

emma coverage tool

I am getting the following error while trying to get coverage data using emma ctl tool. EMMA: processing control command sequence ... EMMA: executing [coverage.get ...
1
vote
1answer
307 views

Emma - Block Coverage vs Line Coverage

I have a strange scenario... while doing a EMMA coverage for UT, I get the total block coverage size more than line coverage size. For block coverage, the total size is some 50,000 while the line ...
1
vote
1answer
2k views

How to change Ant script with EMMA code-coverage so it can find runtime coverage data?

I have following script: <?xml version="1.0" encoding="UTF-8"?> <taskdef resource="emma_ant.properties"> <classpath> <pathelement ...
1
vote
3answers
984 views

emma maven plugin code highlighting

is it possible to have the output html reports have highlighting where code was covered in a maven build? I know you can in standalone emma and with ant, but I haven't yet figured out how to do this ...
1
vote
4answers
490 views

Emma Coverage metadata

I'm trying to understand Emma the code coverage tool and it seems ok till the moment I need the metadata, for example which line exactly is left out or is covered. I need this information for my own ...
1
vote
1answer
4k views

How can I make Cobertura/Emma play nice with an Eclipse application?

My company is in the middle of upgrading our build system to use Buckminster (which has gone well). Naturally the managers would like it if we could automatically generate some of the metrics they use ...
1
vote
3answers
2k views

EMMA coverage tool not displaying line-by-line coverage

I am using the EMMA tool for code coverage yet despite my best efforts, EMMA is refusing to see the original .java files and generate coverage on a line-by-line basis. We are using ANT to build the ...
1
vote
2answers
447 views

Getting ClassFormatError with EMMA?

I'm trying to generate code coverage reports with EMMA using tests of which some use JMockit as a mocking framework. For the most part, it works, but a few of my tests crash with a ClassFormatError, ...
0
votes
0answers
8 views

Compilation with EMMA fails

I want to add emma reports into the maven project I have configured the plugin in pom : <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> ...
0
votes
0answers
15 views

Emma com.vladium.emma.EMMARuntimeException: [CLASS_STAMP_MISMATCH]

Okay, Emma is killing me. I spent two days on this already. There two issues with Emma now It crashes partly through unit testing It complaints about class stamp mismatch. : ...
0
votes
0answers
31 views

Ant build file contains no target for Android EMMA test coverage

I'm having some difficulties getting EMMA test coverage working with our Android test project. I ran android update test-project -m <project_path> -p <test_project_path> and it tells ...

1 2