Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a method that I am trying to unit test. This method takes a parameter as an ArrayList and does things with it. The mock I am trying to define is:

ArrayList<String> mocked = mock(ArrayList.class);

which gives a [unchecked] unchecked conversion" warning.

ArrayList<String> mocked = mock(ArrayList<String>.class);

gives me an error.

Anyone care to enlighten me as to what I am doing wrong?

share|improve this question

2 Answers

up vote 6 down vote accepted

ArrayList<String>.class is a construct not supported by Java compiler.

For you first try, you should do this:

@SuppressWarnings( "unchecked" )
ArrayList<String> mocked = mock(ArrayList.class);

This happens because mock method can only return a raw type. In general it is not good to use the raw types because this may lead to runtime errors. In your case it's perfectly fine, because you know that mocked is not a REAL ArrayList<String> anyway.

Just a general advise about @SuppressWarnings( "unchecked" ) annotation. Try to keep it as close to the source of the problem as possible. For example you may put it just for the variable declaration, or you can suppress it for the whole method. In general suppress it for a variable, because otherwise the broad method annotation can suppress other problems in your function.

share|improve this answer
2  
As a side note, this particular problem is discussed as Item 24 (on pages 116-118) of Effective Java, Second Edition. The entire Generics chapter is available as a PDF on Sun's site: java.sun.com/docs/books/effective/generics.pdf – Powerlord May 27 '10 at 15:22
That makes sense. In general I dislike ignoring warnings but I was not aware you could ignore just one line. Thanks. – Sardathrion May 27 '10 at 15:22

The alternative is to use the @Mock annotation since then Mockito can use type reflection to find the generic type:

public class MyTest {

  @Mock
  private ArrayList<String> mockArrayList;

  ...

  public void setUp() {
    MockitoAnnotations.initMocks(this);
  }

  public void testMyTest() {
    when(mockArrayList.get(0)).thenReturn("Hello world");

    String result = mockArrayList.get(0);

    assertEquals("Should have the correct string", "Hello world", result);

    verify(mockArrayList).get(0);
  }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.