I need to test a service class, but when I try to mock the dao class, it doesn't get triggered, thus not able to use ThenReturn().
I think that the problem is because I use an interface for my Dao and @Autowired in the service class (Spring MVC 3.1):
The interface:
public interface TestDao {
int createObject(Test test) throws NamingException;
}
The implementation:
@Repository
public class TestDaoImpl implements TestDao {
@Override
public int createObject(Test test) {
KeyHolder keyHolder = new GeneratedKeyHolder();
jdbcTemplate.update(new InsertNewTest(test), keyHolder);
return ((java.math.BigDecimal)keyHolder.getKey()).intValue();
}
}
The service:
public class RegTest {
@Autowired
TestDao testDao;
public int regTest(int .....) {
.
.
int cabotageId = testDao.createObject(test);
}
}
In the test I have:
@RunWith(MockitoJUnitRunner.class)
public class TestRegService {
@InjectMocks
private RegTest regTest = new RegTest();
@Mock
TestDao testDao;
@Test()
public void test() {
.
when(testDao.createObject(null)).thenReturn(100);
.
}
testDao.createObject(null) returns 0 (due to being mock'ed) and not 100 as I is trying to achieve.
Can anybody help, please?
Problem solved!
It was the passing test-object to createObject() that did not match. Using
testDao.createObject(any(Test.class))
did the trick!
whencall, simplySystem.out.println(testDao.createObject(null))and see what it says. If it says 100, then you know the problem is with the test, not the mock. If it says 0, then it is some kind of bug with Mockito. – jhericks Apr 9 '12 at 16:59