Tagged Questions
Easymock is a mocking framework for Java.
16
votes
4answers
22k views
EasyMock: Void Methods
I have a method that returns void in a class that is a dependency of the class I want to test.
This class is huge and I'm only using this single method from it.
I need to replace the implementation ...
8
votes
1answer
2k views
EasyMock andReturn() vs andStubReturn()
I'm still a rather new developer,so I might not have a grasp on all the concepts and terms which could be the reason why I don't understand this. But what exactly is the difference between using ...
8
votes
4answers
2k views
Is it possible to create a mock object that implements multiple interfaces with EasyMock?
Is it possible to create a mock object that implements several interfaces with EasyMock?
For example, interface Foo and interface Closeable?
In Rhino Mocks you can provide multiple interfaces when ...
7
votes
3answers
2k views
Mockito preferrable over easymock?
recently I made the switch to Mockito framework and am very happy with it (see also blog-post). The switch from easymock to Mockito was very straightforward and I managed to make the tests down ...
7
votes
4answers
662 views
Mock Runtime.getRuntime()?
Can anyone make any suggestions about how best to use EasyMock to expect a call to Runtime.getRuntime().exec(xxx)?
I could move the call into a method in another class that implements an interface, ...
7
votes
4answers
6k views
EasyMock: How do I create a mock of a genericized class without a warning?
The code
private SomeClass<Integer> someClass;
someClass = EasyMock.createMock(SomeClass.class);
gives me a warning "Type safety: The expression of type SomeClass needs unchecked conversion ...
6
votes
2answers
165 views
Difference between 'same' and 'eq' in EasyMock
Is there a significant(or even any) difference between 'same' and 'eq' in EasyMock?
6
votes
1answer
437 views
How to EasyMock a call to a method that returns a wildcarded generic?
We're looking at switching to Spring 3.0 and running into problems with the intersection of Spring 3.0, EasyMock, and Java Generics.
In one place, we're mocking a Spring 3.0 AbstractBeanFactory, ...
6
votes
4answers
3k views
How do I mock static methods in a class with easymock?
Suppose I have a class like so:
public class StaticDude{
public static Object getGroove() {
// ... some complex logic which returns an object
};
}
How do I mock the static method ...
6
votes
1answer
5k views
Using easymock, repeated void method call
I am new to easymock.
I am trying to mock a service where one of the methods is a void method that will gets called an unknown and large amount of times. How to specify that any number of calls is ...
6
votes
4answers
3k views
Can I mock a super class method call?
Sometimes, you want to test a class method and you want to do an expectation on a call of a super class method. I did not found a way to do this expectation in java using easymock or jmock (and I ...
5
votes
5answers
1k views
Why do we need mocking frameworks like Easymock , JMock or Mockito?
We use hand written stubs in our unit tests and I'm exploring the need for a Mock framework like EasyMock or Mockito in our project.
I do not find a compelling reason for switching to Mocking ...
5
votes
5answers
2k views
Easymock: does the order of captures matter?
This might seem like a pretty detailed question about Easymock, but I'm having a hard time finding a support site/forum/mailing list for this library.
I'm encountering a bug when using the captures() ...
4
votes
1answer
310 views
How do I mock a method inherited from an abstract class with EasyMock?
I'm struggling with EasyMock. I've written two small classes to illustrate my problem:
public abstract class A {
private AtomicReference<Integer> id = new ...
4
votes
3answers
379 views
Testing code which calls native methods
I have a class like this:
public final class Foo
{
public native int getBar();
public String toString()
{
return "Bar: " + getBar();
}
}
Please note that getBar() is ...
4
votes
4answers
3k views
Easymock vs Mockito: Design vs Maintainability?
One way of thinking about this is: if we care about the Design of the code then Easymock is the better choice as it gives feedback to you by its concept of expectations
If we care about the ...
4
votes
5answers
224 views
Are mock frameworks and high test coverage important?
Mock frameworks, e.g. EasyMock, make it easier to plugin dummy dependencies. Having said that, using them for ensuring how different methods on particular components are called (and in what order) ...
4
votes
3answers
3k views
4
votes
4answers
1k views
How does “static reflection” work in java? (ex. in mockito or easymock)
I'm a .NET guy - and I mainly code in C#.
Since C# 3.0, we can leverage lambda expressions and expression trees to use static reflection. For example, it is possible to implement GetMethodName in the ...
3
votes
1answer
61 views
@VisibleForTesting is a smell that suggests which refactoring?
I understand that @VisibleForTesting is not desirable because it changes the interface of a class just for testing purposes while ideally we should test the same interface that we actually use. But ...
3
votes
2answers
98 views
Mock/Test Super class call in subclass..is it possible?
I am looking for a solution to mock the super call in subclass ButtonClicker.
Class Click {
public void buttonClick() throws java.lang.Exception { /* compiled code */ } }
Class ...
3
votes
1answer
130 views
EasyMock: Mock out a constructor call in java
I have a looked at similar questions on this board, but none of them answer my question. This sound strange, but is it possible to mock out a constructor call on the object you're mocking.
Example:
...
3
votes
1answer
111 views
createPartialMock with MocksControl
I have a StrictPartialMock (created with createStrictPartialMock(class, "method1")). and a normal mockedObject.
I want to test if method1() calls StrictPartialMock.method2(), mockedObject.method1(), ...
3
votes
2answers
378 views
More Matchers recorded than the expected - Easymock fails from Maven and not from Eclipse
I'm having a strange problem with Easymock 3.0 and JUnit 4.8.2.
The problem only occurs when executing the tests from Maven and not from Eclipse.
This is the unit test (very simple):
...
protected ...
3
votes
1answer
1k views
service layer testing in spring mvc using easymock
Service Interface:
public List<UserAccount> getUserAccounts();
public List<UserAccount> getUserAccounts(ResultsetOptions resultsetOptions, List<SortOption> sortOptions);
Service ...
3
votes
4answers
474 views
NoClassDefFoundError when using Powermock
I'm running a junit test case using the PowerMock test runner.
I'm using the following command line to execute it:
java -cp .:junit-4.9b2.jar:easymock-3.0.jar:powermock-easymock-1.4.8-full.jar ...
3
votes
5answers
382 views
How do I mock objects that I can't instantiate in my tests?
I'm using EasyMock to mock objects in my tests. But how do I mock objects that are created somewhere else in my code? Look at the following psudo code. I want to mock WebService#getPersonById, how do ...
3
votes
1answer
677 views
Comprehensive Pros/Cons of Mocking Frameworks for GWT
I'm interested in using the right mocking framework for my GWT app. It's my understanding that Mockito, EasyMock, and jMock are some of the most popular for Java. Could someone list pros/cons for the ...
3
votes
1answer
288 views
EasyMock - how to reset mock but maintain expectations?
Is it possible to re-define specific expectations on the same instance of mock object?
Say I have this test which verifies OK:
List<String> foo = createMock(List.class);
...
3
votes
1answer
552 views
EasyMock - changing behavior for equals() and other Object methods
The EasyMock documentation is pretty clear that
The behavior for the three object methods equals(), hashCode() and toString() cannot be changed for Mock Objects created with EasyMock, even if they ...
3
votes
1answer
6k views
java.lang.IllegalStateException: missing behavior definition for the preceding method call getMessage(“title”)
I'm using EasyMock(version 2.4) and TestNG for writing UnitTest.
I have a following scenario and I cannot change the way class hierarchy is defined.
I'm testing ClassB which is extending ClassA.
...
3
votes
5answers
2k views
During suite tests EasyMock says 0 matchers expected 1 recorded
So I've been using EasyMock's class extension for a while now. All of a sudden I'm getting this exception, but only when I run the entire test suite:
java.lang.IllegalStateException: 0 matchers ...
2
votes
1answer
38 views
EasyMock's niceMock equivalent for RhinoMocks
The EasyMock framework (mocks for Java) has very clever method createNiceMock, it is:
Creates a mock object that implements the given interface, order checking is disabled by default, and the mock ...
2
votes
1answer
31 views
Unit test private functions in Android
Can we do unit testing of private functions and fields for Android Application using Android Mock ?
If yes, please explain how ?
2
votes
3answers
91 views
How do you use spring's injection for unit testing a controller?
I want to test my spring mvc controller.
The controller has a service:
@Autowired
UserService userService
And my user service depends on (autowired) my UserDao and some other services like mongoDb ...
2
votes
1answer
43 views
Hibernate+GroovyTestcase: Unable to figure out the error in the code below ..
I am getting a test failure on the test below. Specifically it complains for "expect(mockSession.save(hibernateTransitInfo)).andReturn(hibernateTransitInfo)" and it complains "incompatible return ...
2
votes
2answers
87 views
Expecting anything as parameter to mock using EasyMock
Using EasyMock I want to be able to say that I expect a specific method called on my mock, but I do not care about the parameter which are used to call the mock.
SomeInterface mock = ...
2
votes
1answer
236 views
EasyMock expect method to return multiple, different objects in same test
I am using EasyMock to unit test my Java code. The class I'm trying to test is a RESTful webservice API layer. The API has an underlying service layer which is being mocked in the API test. My problem ...
2
votes
2answers
489 views
EasyMock : java.lang.IllegalStateException: 1 matchers expected, 2 recorded
I am having a problem with EasyMock 2.5.2 and JUnit 4.8.2 (running through Eclipse). I have read all the similar posts here but have not found an answer. I have a class containing two tests which test ...
2
votes
1answer
103 views
easymock unexpected behaviour
I'm not sure what I'm doing wrong here. I had this error in my code, so I wrote a simple example to try to identify where the error lies.
I have a ClassA, that depends on two services ServiceA and ...
2
votes
1answer
395 views
How to mock a method call on the constructor using easymock?
I have a class that receives a factory as an argument that is called inside the constructor. It must be called there because the object should be fully initalized before it can be used. Something ...
2
votes
3answers
309 views
Getting exception from EasyMock's “nice mock” with a debugger attached
(Disclaimer - EasyMock newb)
According to the documentation (and this post), if I wanted to use EasyMock to generate stub objects, I should use EasyMock.createNiceMock(). A "nice mock" is actually a ...
2
votes
4answers
907 views
Mocking void method with EasyMock and Mockito
Hello I would like to know what is the best approach to mock void methods for example: I have a PersonManager under the test and then I have dao that is mocked.
class PersonManager {
PersonDao ...
2
votes
1answer
204 views
Mocking Clojure protocols
Can one of the popular Java mocking frameworks like EasyMock or Mockito be used to mock Clojure protocols defined with defprotocol? If so, how?
2
votes
2answers
2k views
does easymock depend on net/sf/cglib/proxy/Enhancer?
I am trying to complete a tutorial about easymock to use it for the first time.
http://www.vogella.de/articles/EasyMock/article.html
I am using
- Eclipse IDE for Java Developers ( Build ...
2
votes
6answers
1k views
JUnit mocking with Mockito, EasyMock, etc
I'm trying to mock a method of an object inside the class I'm testing.
For instance
class ClassToTest {
public doSomething () {
SomeObject a = new SomeObject ();
a.doSomethingElse ...
2
votes
3answers
839 views
How to turn off recording for an EasyMock object?
I am testing a servlet's doPost() method using EasyMock objects for the HttpServletRequest and HttpServletResponse arguments. Within the doPost() method I'm testing the request and response objects ...
2
votes
4answers
401 views
Test that void method didn't get called with EasyMock
Is this possible?
I tried with EasyMock.expectLastCall().times(0); but EasyMock complains that times must be >=1
2
votes
2answers
517 views
EasyMock and modifing a mutable method parameter
How does one use EasyMock to modify a mocked method's mutable method parameter?
For example, I have class that uses a BlockingQueue. I want to mock the BlockingQueue member for unit testing. My ...
2
votes
4answers
295 views
How to get rid of this generics warning?
I am trying to mock a generic interface, and whenever I mock it, I gets this warning:
The expression of type GenericInterface needs unchecked conversion to conform to GenericInterface<String>
...