j

jmockit

JMockit is a Java toolkit for automated developer testing. It contains mocking and faking APIs and a code coverage tool, supporting both JUnit and TestNG. The mocking API allows all kinds of Java code, without testability restrictions, to be tested in isolation from selected dependencies.
http://www.jmockit.org
The MIT License
Rogério Liesenfeld
Files download
File Operation
jmockit-1.29.jar download
jmockit-1.29.pom download
jmockit-1.29-sources.jar download
Apache Maven
<dependency>
  <groupId>org.jmockit</groupId>
  <artifactId>jmockit</artifactId>
  <version>1.29</version>
</dependency>
Gradle Groovy
implementation 'org.jmockit:jmockit:1.29'
Gradle Kotlin
implementation("org.jmockit:jmockit:1.29")
Scala SBT
libraryDependencies += "org.jmockit" % "jmockit" % "1.29"
Groovy Grape
@Grapes(
  @Grab(group='org.jmockit', module='jmockit', version='1.29')
)
Apache Ivy
<dependency org="org.jmockit" name="jmockit" rev="1.29" />
Leiningen
[org.jmockit/jmockit "1.29"]
Apache Buildr
'org.jmockit:jmockit:jar:1.29'