Package org.powermock.configuration
Class PowerMockConfiguration
java.lang.Object
org.powermock.configuration.PowerMockConfiguration
- All Implemented Interfaces:
Configuration<PowerMockConfiguration>
The class provides list of setting for PowerMock.
The properties with `powermock` prefix are mapped to the class.
- Since:
- 1.7.0
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionString[]
merge
(PowerMockConfiguration configuration) Merge values of the configuration with values ofconfiguration
.void
setByteCodeFramework
(ByteCodeFramework byteCodeFramework) void
setGlobalIgnore
(String[] globalIgnore)
-
Field Details
-
globalIgnore
-
byteCodeFramework
-
-
Constructor Details
-
PowerMockConfiguration
public PowerMockConfiguration()
-
-
Method Details
-
getGlobalIgnore
-
setGlobalIgnore
-
getByteCodeFramework
-
setByteCodeFramework
-
merge
Description copied from interface:Configuration
Merge values of the configuration with values ofconfiguration
. Values with the same keys from theconfiguration
overwrite value in the current configuration.- Specified by:
merge
in interfaceConfiguration<PowerMockConfiguration>
- Parameters:
configuration
- source configurations.- Returns:
- a new instance of
Configuration
with merged values.
-