[maven-release-plugin]  copy for tag powermock-1.6.0
[maven-release-plugin] prepare release powermock-1.6.0
76 files changed
tree: 0a55d801f13547413f3c3b1e29d27d628fd547b9
  1. api/
  2. classloading/
  3. core/
  4. examples/
  5. modules/
  6. reflect/
  7. release/
  8. src/
  9. tests/
  10. .gitignore
  11. .travis.yml
  12. changelog.txt
  13. LICENSE.txt
  14. pom.xml
  15. README.md
README.md

Build Status

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 extend 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.

Refer to the google code page for more info and documentation.