Powermock

PowerMock is a Java framework that allows you to unit test code normally regarded as untestable.
Alternatives To Powermock
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Testify20,99714,68877,23320 hours ago42May 30, 2023411mitGo
A toolkit with common assertions and mocks that plays nicely with the standard library
Mockito14,32838,95014,25914 hours ago346November 02, 2023367mitJava
Most popular Mocking framework for unit tests written in Java
Mockery10,505112,37918,4114 days ago41August 06, 2023106bsd-3-clausePHP
Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL).
Go Sqlmock5,5231,435a month ago21June 28, 202076otherGo
Sql mock driver for golang to test database interactions
Mockery5,2143147 days ago151November 21, 202333bsd-3-clauseGo
A mock code autogenerator for Go
Mockk5,159
7 days ago257apache-2.0Kotlin
mocking library for Kotlin
Powermock4,0898,0892,3146 months ago38November 01, 2020448apache-2.0Java
PowerMock is a Java framework that allows you to unit test code normally regarded as untestable.
Pester2,9684265 days ago91April 05, 2023163otherPowerShell
Pester is the ubiquitous test and mock framework for PowerShell.
Vcrpy2,4898601702 months ago70July 31, 2023137mitPython
Automatically mock your HTTP interactions to simplify and speed up testing
Nsubstitute2,418
9 days ago118otherC#
A friendly substitute for .NET mocking libraries.
Alternatives To Powermock
Select To Compare


Alternative Project Comparisons
Readme

PowerMock

Build Status Maven Central Download Javadoc

Writing unit tests can be hard and sometimes good design has to be sacrificed for the sole purpose of testability. Often testability corresponds to good design, but this is not always the case. For example final classes and methods cannot be used, private methods sometimes need to be protected or unnecessarily moved to a collaborator, static methods should be avoided completely and so on simply because of the limitations of existing frameworks.

PowerMock is a framework that extends other mock libraries such as EasyMock with more powerful capabilities. PowerMock uses a custom classloader and bytecode manipulation to enable mocking of static methods, constructors, final classes and methods, private methods, removal of static initializers and more. By using a custom classloader no changes need to be done to the IDE or continuous integration servers which simplifies adoption. Developers familiar with the supported mock frameworks will find PowerMock easy to use, since the entire expectation API is the same, both for static methods and constructors. PowerMock aims to extend the existing API's with a small number of methods and annotations to enable the extra features. Currently PowerMock supports EasyMock and Mockito.

When writing unit tests it is often useful to bypass encapsulation and therefore PowerMock includes several features that simplifies reflection specifically useful for testing. This allows easy access to internal state, but also simplifies partial and private mocking.

Please note that PowerMock is mainly intended for people with expert knowledge in unit testing. Putting it in the hands of junior developers may cause more harm than good.

News

  • 2019-04-21: PowerMock 2.0.2 has been released and is avaliable in Maven Central. The release includes fixes for issue with PowerMock JavaAgent and the latest JDK and a security issue with the build script.
  • 2019-01-07: PowerMock 2.0.0 has been released. Main changes: offical supporting Mockito 2.x and dropping supporting Mockito 1.x. This release also supports Java 9. Other change read in release notes.
  • 2017-08-12: PowerMock 1.7.1 has been released with one, but significant change: the old API for verifying static mock has been deprecated and a new one has been added. Old API will be removed in version PowerMock 2.0 due to incompatibility with Mockito Public API.
  • 2017-06-16: PowerMock 1.7.0 has been released with support for Mockito 2 (not only beta versions) and new features such as global @PowerMockIgnore as well as bug fixes and other improvements. See release notes and change log for details.
  • 2017-02-03: Johan blogs about how to mock slf4j with PowerMock at his blog

Older News

Documentation

Contributing to PowerMock

Please, read the guideline for a new contributor before start.

Support and discussion

Join the mailing-list here for questions, feedback and support.

Popular Testing Projects
Popular Mocking Projects
Popular Software Quality Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Java
Testing
Mocking
Mocking Framework