Mocking Annotations
Mocking annotations allow fine grained control over what mocking should be preferred when testing.
Using @InTestsMock
@InTestsMock
Perhaps you have a method that Diffblue Cover would ordinarily test using an Integer
but you'd prefer to see it tested using Mockito.mock(..)
. In this case you could annotate the method (or class, or package) to recommend mocking Number
:
Conversely, if Diffblue Cover normally does mock a particular class, and you have a particular location where it shouldn't be then you can forbid it:
Using @InTestsMockConstruction
@InTestsMockConstruction
Perhaps you have a method that Diffblue Cover is unable to test, and you think it could make more progress using Mockito.mockConstruction(Random.class)
. In this case you could annotate the method (or class, or package) to recommend mocking construction of Random
:
Using @InTestsMockStatic
@InTestsMockStatic
Perhaps you have a method that Diffblue Cover is unable to test, and you think it could make more progress using Mockito.mockStatic(UUID.class)
. In this case you could annotate the method (or class, or package) to recommend mocking static methods of UUID
:
Last updated
Was this helpful?