Using Mockito to Unit Test Java Applications
If you’ve spent any time writing unit tests then you’ll know that it’s not always straight-forward. Certain things are inherently hard to test. In this post I’ll show you the basic principles of creating mock objects with a little help from the Mockito mocking tool.
One common problem faced when unit testing is how to test one object when it is dependant on another object. You could create instances of both the object under test and the dependent object and test them both together, however testing aggregated objects is not what unit testing is about – unit tests should test individual objects for their correct behaviour, not aggregations of objects! Moreover, this approach just won’t work if the dependent object hasn’t even been implemented yet.
A common technique for handling dependencies in unit tests is to provide a surrogate, or “mock” object, for the dependent object instead of a real one. The mock object will implement a simplified version of the real objects methods that return predictable results and can be used for testing purposes.
The drawback of this approach is that in a complex application, you could find yourself creating a lot of mock objects. This is where frameworks like Mockito can save you a lot of time and effort.
A Test Scenario
To demonstrate what you can do with Mockito, we’ll examine how we might test an Account object that is dependant on a data access object (AccountDAO). The account object can calculate the charges applicable in the current month by using the DAO to count the number of days overdrawn and then performing a simple calculation on the value obtained from that call. The method names on the classes we’ll use are self-explanatory:

To test this thoroughly, we should test two things:
- that the account obtains the number of overdrawn days by calling the correct method on the DAO,
- that the account calculates the correct fees based upon the value it gets back from the call.
Testing that the account calls the correct method on the DAO
Using JUnit to run the test case, we could write something like this:
import static org.mockito.Mockito.*;
public class TestAccount {
@Test
public void checkAccountCallsDaoMethods() {
//create the object under test
Account account = new Account();
//create a mock DAO
AccountDAO mockedDao = mock(AccountDAO.class);
//associate the mocked DAO with the object under test
account.setDAO(dao);
//call the method under test
long charge = account.calculateCharges();
//verify that the 'countOverdrawnDaysThisMonth' was called
verify(mockedDao).countOverdrawnDaysThisMonth();
}
}
Taking centre stage in all this is the Mockito class which has a bunch of static methods that are used within the unit test (note the static import on line 1).
The call to the ‘mock’ method (line 10) creates a mock object that can be used in place of a real AccountDAO. The call to ‘verify’ (line 19), will throw an exception if the ‘countOverdrawnDaysThisMonth’ method was not called on the mock object.
It is worth noting here that this is a simple example which just demonstrates the basic principle of verification, it is also possible to use the verify method to check for parameter values and ranges in the method call too.
Testing that the account performs its calculations correctly
In the above example, we mocked the DAO but didn’t specify what any of the mocked methods should do. In this case, all methods will return sensible default values of: null, zero or false. More commonly we need to specify something other than these defaults when writing our tests:
import static org.mockito.Mockito.*;
import static junit.framework.Assert.*;
import org.junit.*;
public class TestAccount {
private Account account;
@Before
public void setup() {
AccountDAO mockedDao = mock(AccountDAO.class);
//specify that this method on the mock object should return 8
when(mockedDao.countOverdrawnDaysThisMonth()).thenReturn(8);
account = new Account();
account.setDAO(dao);
}
@Test
public void checkChargesWhenOverdrawn() {
//call the method under test
long charge = account.calculateCharges();
//assert that the charge was £2 per day overdrawn
assertEquals(charge, 16);
}
}
The statement on line 18 specifies that whenever the ‘countOverdrawnDaysThisMonth’ is called it should return a value of 8; overriding the default of zero.
Given that the correct charge is two pounds (or dollars) per day overdrawn, then the assertion on line 25 will pass if the account performed the correct calculation (8 x 2 = 16 right).
Comments
There’s loads more to Mockito than we’ve looked at here. It’s a neat testing tool that works great with JUnit or TestNG. I’ve found that it’s small enough to learn quickly and capable enough to be really useful. Give it a go and write a comment below to let me know what you think of it.

August 20, 2010 - 3:04 am
really best explained till date on net
January 28, 2011 - 3:32 pm
good! very good! the best post, i found on the internet about it. direct and objective.
congratulations.
January 28, 2011 - 4:00 pm
i have a one suggestion to this post: why did not you publish the code from Account and AccountDAO? i believe that to beginner, it will be too good, like this we can see all structure.
thaks
January 28, 2011 - 4:35 pm
i have tested the code above, and it is not working very well, your explanation was good, but i had to adapt some codes to it works correctly, see:
AccountDao mockeddao = Mockito.mock(AccountDao.class);
Mockito.when(AccountDao.countOverDays()).thenReturn((long) 8);
January 28, 2011 - 9:20 pm
Well spotted Camilo! Thanks for noticing that. Yes the DAO in the UML returns a long, so you’ll need to pass a long into the test. You could have put .thenReturn(8L) too, which is a bit nicer than casting an int.
June 1, 2011 - 5:43 pm
I went over a few mockito articles online (including mockito.org) but could not really understand exactly how it works. This article has made it clear to me. Thanks a bunch for writing it!
December 5, 2011 - 8:22 am
Thanks! This helped me a lot!! Keep up the simple and clear explanations!
January 29, 2012 - 10:41 pm
Thanks for the informative post on Mockito. If you are willing to discuss more on unit testing with mockit and unit testing for other languages can check out Mockito Mock forum which is exclusively for unit testing for
different languages. It is a upcoming forum and needs support to make it strong so we can have forum where people can share their knowledge on
Testing.