vote up 28 vote down star
19

What's the best framework for creating mock objects in Java? Why? What are the pros and cons of each framework?

flag

14 Answers

vote up 24 vote down check

I've had good success using Mockito.

When I tried learning about JMock and EasyMock, I found the learning curve to be a bit steep (though maybe that's just me).

I like Mockito because of its simple and clean syntax that I was able to grasp pretty quickly. The minimal syntax is designed to support the common cases very well, although the few times I needed to do something more complicated I found what I wanted was supported and easy to grasp.

Here's an (abridged) example from the Mockito homepage:

import static org.mockito.Mockito.*;

List mockedList = mock(List.class);
mockedList.clear();
verify(mockedList).clear();

It doesn't get much simpler than that.

The only major downside I can think of is that it won't mock static methods.

link|flag
Beautiful. For static methods, simply combine Mockito with JMockit and there is practically no class too "legacy" for you to be able to test. – Epaga Mar 13 at 14:26
I love how when you try to do something you shouldn't (e.g. create mocks inline), you get a very clear explanation of what you did wrong in the exception message. – ripper234 Jun 27 at 12:00
vote up 5 vote down

We are heavily using EasyMock and EasyMock Class Extension at work and are pretty happy with it. It basically gives you everything you need. Take a look at the documentation, there's a very nice example which shows you all the features of EasyMock.

link|flag
In my question, I was more looking for what you like and dislike about a mock framework. I can find the documentation and read all about it - I want to know what the people who have used it think of it. – Josh Brown Sep 7 '08 at 23:44
EasyMock only works on Java 5 and above, argh! – matt b Dec 5 '08 at 18:50
vote up 5 vote down

I've been having success with jmockit (http://jmockit.dev.java.net)

It's pretty new, and so it's a bit raw and underdocumented. It uses asm (http://asm.objectweb.org/index.html) to dynamically redefine the class bytecode, so it can mock out all methods including static, private, constructors, and static initializers. For example:

import mockit.Mockit;

...
Mockit.redefineMethods(MyClassWithStaticInit.class,
                       MyReplacementClass.class);
...
class MyReplacementClass {
  public void $init() {...} // replace default constructor
  public static void $clinit{...} // replace static initializer
  public static void myStatic{...} // replace static method
  // etc...
}

It has an Expectations interface allowing record/playback scenarios as well:

import mockit.Expectations;
import org.testng.annotations.Test;

public class ExpecationsTest {
  private MyClass obj;

  @Test
  public void testFoo() {
    new Expectations(true) {
      MyClass c;
      {
        obj = c;
        invokeReturning(c.getFoo("foo", false), "bas");
      }
    };

    assert "bas".equals(obj.getFoo("foo", false));

    Expectations.assertSatisfied();
  }

  public static class MyClass {
    public String getFoo(String str, boolean bool) {
      if (bool) {
        return "foo";
      } else {
        return "bar";
      }
    }
  }
}

The downside is that it requires java 5/6.

link|flag
yes, can really recommend this – Epaga Oct 22 '08 at 9:49
vote up 5 vote down

I am the creator of PowerMock so obviously I must recommend that! :-)

PowerMock extends both EasyMock and Mockito with the ability to mock static methods, final and even private methods. The EasyMock support is complete, but the Mockito plugin needs some more work. We are planning to add JMock support as well.

PowerMock is not intended to replace other frameworks, rather it can be used in the tricky situations when other frameworks does't allow mocking. PowerMock also contains other useful features such as suppressing static initializers and constructors.

link|flag
Looking good, I'll give it a try :) – MasterPeter May 9 at 18:57
vote up 3 vote down

Yes, Mockito is a great framework. I use it together with hamcrest and Google guice to setup my tests.

link|flag
vote up 2 vote down

I started using mocks through JMock, but eventually transitioned to use EasyMock. EasyMock was just that, --easier-- and provided a syntax that felt more natural. I haven't switched since.

link|flag
vote up 2 vote down

You could also have a look at testing using Groovy. In Groovy you can easily mock Java interfaces using the 'as' operator:

def request = [isUserInRole: { roleName -> roleName == "testRole"}] as HttpServletRequest

Apart from this basis functionality Groovy offers a lot more on the mocking front:

http://docs.codehaus.org/display/GROOVY/Groovy+Mocks

link|flag
vote up 1 vote down

The best solution to mocking is to have the machine do all the work with automated specification-based testing. For Java, see ScalaCheck and the Reductio framework included in the Functional Java library. With automated specification-based testing frameworks, you supply a specification of the method under test (a property about it that should be true) and the framework generates tests as well as mock objects, automatically.

For example, the following property tests the Math.sqrt method to see if the square root of any positive number n squared is equal to n.

val propSqrt = forAll { (n: Int) => (n >= 0) ==> scala.Math.sqrt(n*n) == n }

When you call propSqrt.check(), ScalaCheck generates hundreds of integers and checks your property for each, also automatically making sure that the edge cases are covered well.

Even though ScalaCheck is written in Scala, and requires the Scala Compiler, it's easy to test Java code with it. The Reductio framework in Functional Java is a pure Java implementation of the same concepts.

link|flag
vote up 1 vote down

For something a little different, you could use JRuby and Mocha which are combined in JtestR to write tests for your Java code in expressive and succinct Ruby. There are some useful mocking examples with JtestR here. One advantage of this approach is that mocking concrete classes is very straightforward.

link|flag
vote up 1 vote down

There is a comparison for JMock and EasyMock here including codes.

link|flag
vote up 1 vote down

The JMockit project site contains plenty of comparative information for current mocking toolkits.

There are specific sample tests for comparison of JMockit with EasyMock, EasyMock Class Extension, jMock, PowerMock, Mockito, and Unitils. For Mockito, for example, the comparison test suite contains 21 tests using Mockito plus the corresponding 21 tests using JMockit. The JMockit x PowerMock comparison suite, in turn, contains over 100 tests in total.

link|flag
vote up 0 vote down

Another one very easy to use is

http://www.jmock.org/

link|flag
Thanks for the answer, but what I was really looking for was what you like and dislike about it from your experience. – Josh Brown Sep 7 '08 at 23:45
vote up 0 vote down

I like JMock because you are able to set up expectations. This is totally different from checking if a method was called found in some mock libraries. Using JMock you can write very sofisticated expectations. See the jmock cheat-sheat.

link|flag
vote up 0 vote down

Another vote for Mockito. :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.