up vote 6 down vote favorite
2
share [g+] share [fb]

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 think it is not possible).

There is a (relative) clean solution, to create a delegate with the super class method logic and then set expectations on it, but I don't know why and when use that solution ¿any ideas/examples?

Thanks

link|improve this question
1  
I can't think of a really compelling reason why this is a bad idea. +1 for brilliant question. – TokenMacGuy Mar 8 '09 at 5:08
feedback

4 Answers

up vote 3 down vote accepted

Well, you can if you want to. I don't know if you are familiar with JMockit, go check it out. In the mean time, let's take a look at it...

Assume the following class hierarchy:

public class Bar {
    public void bar() {
        System.out.println("Bar#bar()");
    }
}

public class Foo extends Bar {
    public void bar() {
        super.bar();
        System.out.println("Foo#bar()");
    }
}

Then, using JMockit in your FooTest.java you can validate that you're actually making a call to Bar from Foo.

public static class MockBar {
    private boolean barCalled = false;

    public void bar() {
        this.barCalled = true;
        System.out.println("mocked bar");
    }
}

@Test
public void barShouldCallSuperBar() {
    MockBar mockBar = new MockBar();
    Mockit.redefineMethods(Bar.class, mockBar);

    Foo foo = new Foo();
    foo.bar();

    Assert.assertTrue(mockBar.barCalled);

    Mockit.restoreAllOriginalDefinitions();
}
link|improve this answer
It's also possible to do it using the JMockit Expectations API (see the new project site at code.google.com/p/jmockit). – Rogerio Jan 12 '10 at 1:23
feedback

I don't think I'd mock out a super call - it feels to me like the behaviour there is part of the behaviour of the class itself, rather than the behaviour of a dependency. Mocking always feels like it should be to do with dependencies more than anything else.

Do you have a good example of the kind of call you want to mock out? If you want to mock out a call like this, would it be worth considering composition instead of inheritance?

link|improve this answer
Yes, but you want to test the subclass isolated, you know the super class works fine, you don't wan to test it again. – arielsan Mar 8 '09 at 15:31
Please, just don't do this. You're breaking encapsulation to lock the implementation into the test. Unless this code never changes again, you'll regret it. – Steve Freeman Mar 13 '11 at 15:35
feedback

There are several tests that do just that (ie specify an expected invocation on a super-class method) using the JMockit Expectations API, in the Animated Transitions sample test suite. For example, the FadeInTest test case.

link|improve this answer
This test was meanwhile moved to: code.google.com/p/jmockit/source/browse/trunk/samples/… – Konstantin Pribluda Nov 8 '11 at 9:09
feedback

intercepting a super call is much too fine-grained. Don't overdo the isolation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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