How do I have EasyMock to test that a method is called and returns a specific type - irrespective of the value viz
EasyMock.expect(........).andReturn(String.Type).times(5);
I just need to ensure that a method is called x number of times.
Is this possible?