I'm writing a JMock test for a class that needs to create a number of collections within itself. I am supplying the class with a factory which will generate a Collection when needed.
interface Factory
{
<T> Collection<T> newCollection();
}
class MyClass
{
public MyClass(Factory f)
{
List<ThingA> la = f.newCollection();
List<ThingB> lb = f.newCollection();
}
}
Now that works but when using JMock to test "MyClass", I cannot mock this return type overloading.
Collection<ThingA> ta = new LinkedList<ThingA>();
Collection<ThingB> tb = new LinkedList<ThingB>();
Collection<ThingC> tc = new LinkedList<ThingC>();
Factory mockFactory = context.mock(Factory.class);
context.checking(new Expectations()
{
{
allowing(mockFactory).newCollection(); will(returnValue(ta));
allowing(mockFactory).newCollection(); will(returnValue(tb));
allowing(mockFactory).newCollection(); will(returnValue(tc));
}
}
);
// All return ta
Collection<ThingA> ta2 = mockFactory.newCollection();
Collection<ThingB> tb2 = mockFactory.newCollection();
Collection<ThingC> tc2 = mockFactory.newCollection();
Is there any way to get this to work? I know I could pass in a ThingX in as an argument but that seems a bit pointless if it's just to trigger type checking for testing.
My current fix is going to be to add a sequence so that I'm enforcing the order of the calls to newCollection but I can see situations where this would not work (say pooling of generic types).
Can this be done?