Pages

Showing posts with label EasyMock. Show all posts
Showing posts with label EasyMock. Show all posts
1 comments

EasyMock

EasyMock.createMockBuilder(Cookie.class).addMockedMethod("getIngredients").createMock();
EasyMock.expect(cookie.getIngredients()).andReturn(getMockIngredients()).anyTimes();
EasyMock.replay(cookie);