Enum Class MockReset
- All Implemented Interfaces:
Serializable
,Comparable<MockReset>
,Constable
Deprecated, for removal: This API element is subject to removal in a future version.
Reset strategy used on a mock bean. Usually applied to a mock through the
@MockBean
annotation but can also be directly applied to any mock in
the ApplicationContext
using the static methods.- Since:
- 1.4.0
- Author:
- Phillip Webb
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Reset the mock after the test method runs.Deprecated, for removal: This API element is subject to removal in a future version.Reset the mock before the test method runs.Deprecated, for removal: This API element is subject to removal in a future version.Don't reset the mock. -
Method Summary
Modifier and TypeMethodDescriptionstatic org.mockito.MockSettings
after()
Deprecated, for removal: This API element is subject to removal in a future version.Createsettings
to be used with mocks where reset should occur after each test method runs.static org.mockito.MockSettings
Deprecated, for removal: This API element is subject to removal in a future version.ApplyMockReset
to existingsettings
.static org.mockito.MockSettings
before()
Deprecated, for removal: This API element is subject to removal in a future version.Createsettings
to be used with mocks where reset should occur before each test method runs.static MockReset
Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this class with the specified name.static MockReset[]
values()
Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum class, in the order they are declared.static org.mockito.MockSettings
withSettings
(MockReset reset) Deprecated, for removal: This API element is subject to removal in a future version.Createsettings
to be used with mocks where a specific reset should occur.
-
Enum Constant Details
-
BEFORE
Deprecated, for removal: This API element is subject to removal in a future version.Reset the mock before the test method runs. -
AFTER
Deprecated, for removal: This API element is subject to removal in a future version.Reset the mock after the test method runs. -
NONE
Deprecated, for removal: This API element is subject to removal in a future version.Don't reset the mock.
-
-
Method Details
-
values
Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
before
public static org.mockito.MockSettings before()Deprecated, for removal: This API element is subject to removal in a future version.Createsettings
to be used with mocks where reset should occur before each test method runs.- Returns:
- mock settings
-
after
public static org.mockito.MockSettings after()Deprecated, for removal: This API element is subject to removal in a future version.Createsettings
to be used with mocks where reset should occur after each test method runs.- Returns:
- mock settings
-
withSettings
Deprecated, for removal: This API element is subject to removal in a future version.Createsettings
to be used with mocks where a specific reset should occur.- Parameters:
reset
- the reset type- Returns:
- mock settings
-
apply
Deprecated, for removal: This API element is subject to removal in a future version.ApplyMockReset
to existingsettings
.- Parameters:
reset
- the reset typesettings
- the settings- Returns:
- the configured settings
-
MockReset