Skip to content

Commit

Permalink
Added CodeCov badge to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Plizga committed Apr 23, 2020
1 parent 53b6249 commit cbb6cb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Travis (.com)](https://img.shields.io/travis/com/toparvion/jmint?style=plastic)](https://travis-ci.com/github/Toparvion/jmint) [![Maven Central](https://img.shields.io/maven-central/v/tech.toparvion/jmint?color=green&style=plastic)](https://search.maven.org/artifact/tech.toparvion/jmint/1.4-beta/jar) [![Download from GitHub](https://img.shields.io/github/downloads/toparvion/jmint/total?label=GitHub%20downloads&style=plastic)](https://github.com/Toparvion/jmint/releases)
[![Travis (.com)](https://img.shields.io/travis/com/toparvion/jmint?style=plastic)](https://travis-ci.com/github/Toparvion/jmint) [![Codecov branch](https://img.shields.io/codecov/c/gh/toparvion/jmint/master?style=plastic)](https://codecov.io/gh/Toparvion/jmint) [![Maven Central](https://img.shields.io/maven-central/v/tech.toparvion/jmint?color=green&style=plastic)](https://search.maven.org/artifact/tech.toparvion/jmint/1.4-beta/jar) [![Download from GitHub](https://img.shields.io/github/downloads/toparvion/jmint/total?label=GitHub%20downloads&style=plastic)](https://github.com/Toparvion/jmint/releases)

# Overview

Expand All @@ -24,7 +24,7 @@ Typical use cases of *jMint* include (but not restricted to) testing stage when

## How does it work?

jMint operates as Java agent – special kind of application that is launched by (usually HotSpot) JVM and is able to modify byte code of classes being loaded by JVM.
jMint operates as Java agent – special kind of application that is launched by (usually HotSpotJVM and is able to modify byte code of classes being loaded by JVM.
* First, **jMint** loads and parses the modifying behavior in the form of [**_droplet_**](#what-is-droplet) – a Java source file describing the target of modification (class, method, etc) and the modifying code itself.
* Then, at the time of target class loading, the modifying code gets compiled against the class and **jMint** passes it to JVM alongside with the original byte code just like if it was loaded in usual way.

Expand Down

0 comments on commit cbb6cb0

Please sign in to comment.