Shorter Syntax for Creating Stubs with Mockito
As part of my efforts to create more concise Unit Tests in Java, Steve McLarnon and I recently added the ability to create a stub and stub one method with only one line.
The implementation relies entirely on Mockito, so my example assumes you were already using Mockito to create the stub.
The Mockito documentation has the following example for stubbing:
LinkedList mockedList = mock(LinkedList.class);Using the code Steve and I put together you can simplify this to the following single line.
when(mockedList.get(0)).thenReturn("first");
LinkedList mockedList = create(aStub(LinkedList.class).returning("first").from().get(0));The
implementation is simple, but does rely on static state. There are ways
to improve the implementation; however, this works for us. If you have
more specific needs, feel free to change it to suit you.The implementation follows:
public class MockitoExtensions {
public static T create(Object methodCall) {
when(methodCall).thenReturn(StubBuilder.current.returnValue);
return (T) StubBuilder.current.mockInstance;
}
public static StubBuilder aStub(Class klass) {
return new StubBuilder(mock(klass));
}
public static class StubBuilder {
public static StubBuilder current;
public final T mockInstance;
private Object returnValue;
public StubBuilder(T mockInstance) {
current = this;
this.mockInstance = mockInstance;
}
public T from() {
return mockInstance;
}
public StubBuilder returning(Object returnValue) {
this.returnValue = returnValue;
return this;
}
}
}
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)






Comments
Michael Vitz replied on Sun, 2010/02/28 - 7:06am
Hi.
I like this syntax, but I can't get this working. The compiler complains about the missing reference for the Typeparameter T. Are you sure this is the exact code you are using?
Steven Baker replied on Mon, 2010/08/30 - 1:35am