Easymock is a mocking framework for Java.
I have a data source from which I can request a list of people that live in a (any) country, …
java unit-testing junit easymockAs per title, just wondering if there is a mechanism with easymock to test if a method wasn't called during …
easymockI have a looked at similar questions on this board, but none of them answer my question. This sound strange, …
java mocking easymock constructor-injectionIn my unit tests I'm using EasyMock for creating mock objects. In my test code I have something like this …
java unit-testing easymockI am new to easymock. I am trying to mock a service where one of the methods is a void …
java junit easymockI am using EasyMock to create mock classes in test cases. expect(entity.getType()).andReturn("string"); Type belongs to the …
java unit-testing jakarta-ee easymockWhat is the difference between EasyMock.isA(String.class) and EasyMock.anyObject(String.class) (Or any other class supplied) In …
easymock