|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.mockito.internal.creation.settings.CreationSettings<T>
org.mockito.internal.creation.MockSettingsImpl<T>
public class MockSettingsImpl<T>
| Field Summary |
|---|
| Fields inherited from class org.mockito.internal.creation.settings.CreationSettings |
|---|
defaultAnswer, extraInterfaces, invocationListeners, mockName, name, serializable, spiedInstance, typeToMock |
| Constructor Summary | |
|---|---|
MockSettingsImpl()
|
|
| Method Summary | |
|---|---|
MockCreationSettings<T> |
confirm(java.lang.Class<T> typeToMock)
|
MockSettings |
defaultAnswer(Answer defaultAnswer)
Specifies default answers to interactions. |
MockSettings |
extraInterfaces(java.lang.Class... extraInterfaces)
Specifies extra interfaces the mock should implement. |
Answer<java.lang.Object> |
getDefaultAnswer()
the default answer for this mock, see MockSettings.defaultAnswer(org.mockito.stubbing.Answer). |
java.util.Set<java.lang.Class> |
getExtraInterfaces()
the extra interfaces the mock object should implement. |
java.util.List<InvocationListener> |
getInvocationListeners()
the invocation listeners attached to this mock, see MockSettings.invocationListeners(org.mockito.listeners.InvocationListener...). |
MockName |
getMockName()
the name of this mock, as printed on verification errors; see MockSettings.name(java.lang.String). |
java.lang.Object |
getSpiedInstance()
the spied instance - needed for spies. |
java.lang.Class<T> |
getTypeToMock()
Mocked type. |
boolean |
hasInvocationListeners()
|
MockSettings |
invocationListeners(InvocationListener... listeners)
Registers a listener for method invocations on this mock. |
boolean |
isSerializable()
if the mock is serializable, see MockSettings.serializable(). |
MockSettings |
name(java.lang.String name)
Specifies mock name. |
MockSettings |
serializable()
Configures the mock to be serializable. |
MockSettings |
spiedInstance(java.lang.Object spiedInstance)
Specifies the instance to spy on. |
MockSettings |
verboseLogging()
Enables real-time logging of method invocations on this mock. |
| Methods inherited from class org.mockito.internal.creation.settings.CreationSettings |
|---|
getName, setExtraInterfaces, setMockName, setTypeToMock |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public MockSettingsImpl()
| Method Detail |
|---|
public MockSettings serializable()
MockSettingsWARNING: This should be rarely used in unit testing.
The behaviour was implemented for a specific use case of a BDD spec that had an unreliable external dependency. This was in a web environment and the objects from the external dependency were being serialized to pass between layers.
Example:
List serializableMock = mock(List.class, withSettings().serializable());
serializable in interface MockSettingspublic MockSettings extraInterfaces(java.lang.Class... extraInterfaces)
MockSettingsThis mysterious feature should be used very occasionally. The object under test should know exactly its collaborators & dependencies. If you happen to use it often than please make sure you are really producing simple, clean & readable code.
Examples:
Foo foo = mock(Foo.class, withSettings().extraInterfaces(Bar.class, Baz.class));
//now, the mock implements extra interfaces, so following casting is possible:
Bar bar = (Bar) foo;
Baz baz = (Baz) foo;
extraInterfaces in interface MockSettingsextraInterfaces - extra interfaces the should implement.
public MockName getMockName()
MockCreationSettingsMockSettings.name(java.lang.String).
getMockName in interface MockCreationSettings<T>getMockName in class CreationSettings<T>public java.util.Set<java.lang.Class> getExtraInterfaces()
MockCreationSettings
getExtraInterfaces in interface MockCreationSettings<T>getExtraInterfaces in class CreationSettings<T>public java.lang.Object getSpiedInstance()
MockCreationSettings
getSpiedInstance in interface MockCreationSettings<T>getSpiedInstance in class CreationSettings<T>public MockSettings name(java.lang.String name)
MockSettingsBeware that naming mocks is not a solution for complex code which uses too many mocks or collaborators. If you have too many mocks then refactor the code so that it's easy to test/debug without necessity of naming mocks.
If you use @Mock annotation then you've got naming mocks for free! @Mock uses field name as mock name. Read more.
Examples:
Foo foo = mock(Foo.class, withSettings().name("foo"));
//Below does exactly the same:
Foo foo = mock(Foo.class, "foo");
name in interface MockSettingsname - the name of the mock, later used in all verification errors
public MockSettings spiedInstance(java.lang.Object spiedInstance)
MockSettingsAs usual you are going to read the partial mock warning: Object oriented programming is more or less about tackling complexity by dividing the complexity into separate, specific, SRPy objects. How does partial mock fit into this paradigm? Well, it just doesn't... Partial mock usually means that the complexity has been moved to a different method on the same object. In most cases, this is not the way you want to design your application.
However, there are rare cases when partial mocks come handy: dealing with code you cannot change easily (3rd party interfaces, interim refactoring of legacy code etc.) However, I wouldn't use partial mocks for new, test-driven & well-designed code.
Enough warnings about partial mocks, see an example how spiedInstance() works:
Foo foo = mock(Foo.class, withSettings().spiedInstance(fooInstance));
//Below does exactly the same:
Foo foo = spy(fooInstance);
About stubbing for a partial mock, as it is a spy it will always call the real method, unless you use the
doReturn|Throw|Answer|CallRealMethod stubbing style. Example:
List list = new LinkedList(); List spy = spy(list); //Impossible: real method is called so spy.get(0) throws IndexOutOfBoundsException (the list is yet empty) when(spy.get(0)).thenReturn("foo"); //You have to use doReturn() for stubbing doReturn("foo").when(spy).get(0);
spiedInstance in interface MockSettingsspiedInstance - to spy on
public MockSettings defaultAnswer(Answer defaultAnswer)
MockSettingsIt is the default answer so it will be used only when you don't stub the method call.
Foo mock = mock(Foo.class, withSettings().defaultAnswer(RETURNS_SMART_NULLS));
Foo mockTwo = mock(Foo.class, withSettings().defaultAnswer(new YourOwnAnswer()));
//Below does exactly the same:
Foo mockTwo = mock(Foo.class, new YourOwnAnswer());
defaultAnswer in interface MockSettingsdefaultAnswer - default answer to be used by mock when not stubbed
public Answer<java.lang.Object> getDefaultAnswer()
MockCreationSettingsMockSettings.defaultAnswer(org.mockito.stubbing.Answer).
getDefaultAnswer in interface MockCreationSettings<T>getDefaultAnswer in class CreationSettings<T>public boolean isSerializable()
MockCreationSettingsMockSettings.serializable().
isSerializable in interface MockCreationSettings<T>isSerializable in class CreationSettings<T>public MockSettings verboseLogging()
MockSettingsInvocations are logged as they happen to the standard output stream.
Calling this method multiple times makes no difference.
Example:
List mockWithLogger = mock(List.class, withSettings().verboseLogging());
verboseLogging in interface MockSettingspublic MockSettings invocationListeners(InvocationListener... listeners)
MockSettingsMultiple listeners may be added, but the same object is only added once. The order, in which the listeners are added, is not guaranteed to be the order in which the listeners are notified. Example:
List mockWithListener = mock(List.class, withSettings().invocationListeners(new YourInvocationListener()));
See the listener interface for more details.
invocationListeners in interface MockSettingslisteners - The invocation listeners to add. May not be null.
public java.util.List<InvocationListener> getInvocationListeners()
MockCreationSettingsMockSettings.invocationListeners(org.mockito.listeners.InvocationListener...).
getInvocationListeners in interface MockCreationSettings<T>getInvocationListeners in class CreationSettings<T>public boolean hasInvocationListeners()
public java.lang.Class<T> getTypeToMock()
MockCreationSettings
getTypeToMock in interface MockCreationSettings<T>getTypeToMock in class CreationSettings<T>public MockCreationSettings<T> confirm(java.lang.Class<T> typeToMock)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||