Sponsored Links

Senin, 20 November 2017

Sponsored Links

CTC++ code coverage tool for C, C++/CPP, Java and C# , Cross ...
src: i.ytimg.com

Java code coverage tools are of two types: first, tools that add statements to the Java source code and require its recompilation. Second, tools that instrument the bytecode, either before or during execution. The goal is to find out which parts of the code are tested by registering the lines of code executed when running a test.


Video Java Code Coverage Tools



JCov

JCov is the tool which has been developed and used with Sun JDK (and later Oracle JDK) from the very beginning of Java: from the version 1.1. JCov is capable of measuring and reporting Java code coverage. JCov is distributed under the terms of the GNU Public License (version 2, with the Classpath Exception). JCov has become open-source as a part of OpenJDK code tools project in 2014.

Features

JCov is capable of reporting the following types of code coverage:

  • Block coverage
  • Line coverage
  • Branch coverage
  • Method coverage

JCov implements two different ways to save the collected data:

  • Into a file on the filesystem
  • Onto a server (a.k.a. "network grabber")

JCov works by instrumenting Java bytecode using two different approaches:

  • Static instrumentation which is done upfront, changing the tested code
  • Dynamic instrumentation which is done on the fly by means of Java agent

JCov has a few more distinctive features which include, but are not limited to:

  • Field coverage
  • Abstract API coverage
  • Direct/indirect coverage
  • Per-test coverage information (a.k.a. "test scales")
  • Public API and SPI which makes it possible to implement custom filtering and/or mining the coverage data

Tools using JCov

  • Oracle JDK (SE and ME)
  • JCK (the Java Compatibility Kit)
  • Various Java SE and Java ME TCKs
  • Java FX SDK
  • Java FX Scene Builder

Maps Java Code Coverage Tools



JaCoCo

JaCoCo is an open-source toolkit for measuring and reporting Java code coverage. JaCoCo is distributed under the terms of the Eclipse Public License. It was developed as a replacement for EMMA under the umbrella of the EclEmma plug-in for Eclipse.

Features

JaCoCo offers instructions, line and branch coverage.

In contrast to Clover, which requires instrumenting the source code, JaCoCo can instrument Java bytecode using two different approaches:

  • like JCov on the fly while running the code with a Java agent
  • like JCov and Cobertura prior to execution (offline)

And can be configured to store the collected data in a file, or send it via TCP. Files from multiple runs or code parts can be merged easily. Unlike Cobertura and Emma it fully supports Java 7, Java 8 and Java 9.

Tools using or including JaCoCo

  • SonarQube JaCoCo plugin -- one of the defaults for coverage analyses within the code quality management platform SonarQube
  • EclEmma Eclipse (software) Code Coverage Plugin, was formerly EMMA based
  • Jenkins JaCoCo Plugin
  • Netbeans JaCoCo support
  • IntelliJ IDEA since v11
  • Gradle JaCoCo Plugin
  • Visual Studio Team Services
  • TeamCity

DecisionSoft Java in the real world DecisionSoft Stephen White 8 ...
src: images.slideplayer.com


Clover

Clover is a Java code coverage analysis utility bought and further developed by Atlassian. In April 2017 Atlassian announced end-of-life of Clover and at the same time open-sourced it under Apache 2.0 license.

Clover uses a source code instrumentation technique (as opposed to Cobertura and JaCoCo, which use byte code instrumentation), which has its advantages (such as an ability to collect code metrics) and disadvantages (re-compilation of sources is necessary). Some of its features include historical reporting, huge control over the coverage gathering process, command line toolset and API for legacy integration and more.

Clover also allows testing time to be reduced by only running the tests that cover the application code that was modified since the previous build. This is called Test Optimization and can lead to huge drops in the amount of time spent waiting for automated tests to complete.

Clover comes with a number of integrations both developed by Atlassian (Ant, Maven, Grails, Eclipse, IDEA, Bamboo) and by open source community (Gradle, Griffon, Jenkins, Hudson, Sonar).


Java Code Coverage Mechanics - YouTube
src: i.ytimg.com


OpenClover

OpenClover is a free and open-source successor of Atlassian Clover, created as a fork from the Clover code base published by Atlassian. It contains all features of the original Clover (the server edition). The OpenClover project is led by developers who maintained Clover in years 2012-2017.

OpenClover uses source code instrumentation technique and handles Java, Groovy and AspectJ languages. Some of its features include: fine control over scope of coverage measurement, test optimisation and sophisticated reports.

OpenClover integrates with Ant, Maven, Gradle, Grails, Eclipse, IDEA, Bamboo, Jenkins, Hudson, Griffon, Sonar and AspectJ.


android - NoClassDefFoundError with the EclEmma code coverage tool ...
src: i.stack.imgur.com


Cobertura

Cobertura is an open-source tool for measuring code coverage. It does so by instrumenting the byte code.


Java Code Coverage Mechanics (Evgeny Mandrikov) - YouTube
src: i.ytimg.com


EMMA

EMMA is an open-source toolkit for measuring and reporting Java code coverage. EMMA is distributed under the terms of Common Public License v1.0.

EMMA is not currently under active development; the last stable release took place in mid-2005. As replacement, JaCoCo was developed. EMMA works by wrapping each line of code and each condition with a flag, which is set when that line is executed.

Features

  • instrument classes for coverage either offline (before they are loaded) or on the fly (using an instrumenting application classloader).
  • Supported coverage types: class, method, line, basic block. EMMA can detect when a single source code line is covered only partially.
  • Coverage stats are aggregated at method, class, package, and "all classes" levels.
  • Output report types: plain text, HTML, XML. All report types support drill-down, to a user-controlled detail depth. The HTML report supports source code linking.
  • Output reports can highlight items with coverage levels below user-provided thresholds.
  • Coverage data obtained in different instrumentation or test runs can be merged.
  • it is possible to dump or reset coverage data remotely and without a JVM exit.
  • does not require access to the source code and degrades gracefully with decreasing amount of debug information available in the input classes.
  • can instrument individual .class files or entire .jars (in place, if desired). Efficient coverage subset filtering is possible, too.
  • Makefile and ANT build integration are supported on equal footing.
  • The runtime overhead of added instrumentation is small (5-20%) and the bytecode instrumentor itself is very fast (mostly limited by file I/O speed). Memory overhead is a few hundred bytes per Java class.
  • EMMA is 100% pure Java, has no external library dependencies, and works in any Java 2 JVM (even 1.2.x).

EMMA-based tools

  • Intellij Idea Plugin--Includes code coverage support from its own and an EMMA plugin
  • SonarQube EMMA plugin--Enables usage of EMMA analyses within the code quality management platform SonarQube
  • Google CodePro AnalytiX
  • Jenkins Emma Plugin

Code Coverage using JUnit, JaCoCo and Sonar | Go2Eat Learn
src: 4.bp.blogspot.com


Serenity

Serenity is an open-source toolkit for measuring and reporting Java code coverage. As well as coverage, major code metrics are measured:- cyclometric complexity, stability, abstractness and distance from main. The report data is persisted to an object database, and made available via Jenkins/Hudson. The interface replicates the Eclipse IDE interface visually.

Serenity dynamically enhances the byte code, making a post-compile step unnecessary. Ant and Maven projects are supported. Configuration is done in xml, an Ant example would be:

And a Maven configuration example would be:

For a full example of a configuration please refer to the Jenkins wiki at https://wiki.jenkins-ci.org/display/JENKINS/Serenity+Plugin.

Jenkins slaves as well as Maven multi module projects are supported.


Java code coverage - YouTube
src: i.ytimg.com


Testwell CTC++ for Java

Testwell CTC++ is a code coverage for C, C++, Java and C#. The development of this tool started in 1989 at Testwell in Finland. Since 2013 support and development has been continued by Verifysoft Technology, a company from Offenburg, Germany. Testwell CTC++ analyses for all code coverage levels up to Modified condition/decision coverage and Multicondition Coverage. The tool works with all compilers.


Code Coverage Tools Comparison in Sonar - DZone Java
src: dz2cdn1.dzone.com


See also

  • Software Testing portal

Selenium code coverage tool - YouTube
src: i.ytimg.com


References


GENSOFT - YAZILIM GELİŞTİRME ÇÖZÜMLERİ LTD.
src: www.gensoft-tr.com


External links

  • Comparison of OpenClover, Clover, Cobertura, JaCoCo, JCov, CodeCover and PIT
  • JaCoCo vs Clover2
  • Pick your code coverage tool in Sonar 2.2, a little outdated, as JaCoCo meanwhile supports branch coverage
  • Testing Java Applications with Visual Studio Team Services

Source of the article : Wikipedia

Comments
0 Comments