j

jmockit

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