powermock-examples-spring-mockito-xml

Example showing how to use the PowerMock in a Spring Integration Test and XML parsing

License

License

Categories

Categories

Mockito Unit Testing PowerMock
GroupId

GroupId

org.powermock.examples
ArtifactId

ArtifactId

powermock-examples-spring-mockito-xml
Last Version

Last Version

1.6.4
Release Date

Release Date

Type

Type

jar
Description

Description

powermock-examples-spring-mockito-xml
Example showing how to use the PowerMock in a Spring Integration Test and XML parsing

Download powermock-examples-spring-mockito-xml

How to add to project

<!-- https://jarcasting.com/artifacts/org.powermock.examples/powermock-examples-spring-mockito-xml/ -->
<dependency>
    <groupId>org.powermock.examples</groupId>
    <artifactId>powermock-examples-spring-mockito-xml</artifactId>
    <version>1.6.4</version>
</dependency>
// https://jarcasting.com/artifacts/org.powermock.examples/powermock-examples-spring-mockito-xml/
implementation 'org.powermock.examples:powermock-examples-spring-mockito-xml:1.6.4'
// https://jarcasting.com/artifacts/org.powermock.examples/powermock-examples-spring-mockito-xml/
implementation ("org.powermock.examples:powermock-examples-spring-mockito-xml:1.6.4")
'org.powermock.examples:powermock-examples-spring-mockito-xml:jar:1.6.4'
<dependency org="org.powermock.examples" name="powermock-examples-spring-mockito-xml" rev="1.6.4">
  <artifact name="powermock-examples-spring-mockito-xml" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.powermock.examples', module='powermock-examples-spring-mockito-xml', version='1.6.4')
)
libraryDependencies += "org.powermock.examples" % "powermock-examples-spring-mockito-xml" % "1.6.4"
[org.powermock.examples/powermock-examples-spring-mockito-xml "1.6.4"]

Dependencies

compile (3)

Group / Artifact Type Version
org.springframework : spring-core jar 3.0.5.RELEASE
org.springframework : spring-context jar 3.0.5.RELEASE
commons-lang : commons-lang jar 2.6

test (5)

Group / Artifact Type Version
org.springframework : spring-test jar 3.0.5.RELEASE
org.powermock : powermock-api-mockito jar 1.6.4
org.powermock : powermock-module-junit4-rule jar 1.6.4
org.powermock : powermock-classloading-xstream jar 1.6.4
junit : junit jar 4.8.2

Project Modules

There are no modules declared in this project.

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.

org.powermock.examples

Jayway

Versions

Version
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5
1.4.12
1.4.11
1.4.10
1.4.9