Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to mock java.awt.Toolkit.beep() using JMockit Expectations. I have the following code in my test case:

new Expectations() {
    Toolkit mock;

    {
        mock.beep();
    }
}.endRecording();

When I run the test case (JUnit 4), I get the following exception at the "new Expectations" line:

java.lang.ClassFormatError: Code attribute in native or abstract methods in class file $Mock

Any ideas?

share|improve this question
I am beginning to suspect that java.awt.Toolkit cannot be mocked because (1) it is abstract, and (2) it is implemented with a "native" method. – Ralph Apr 26 '09 at 16:12

1 Answer

up vote 0 down vote accepted

The default jmock can only mock interface. To mock class, you need to following these instructions

share|improve this answer
2  
JMockit, not JMock – Ralph Apr 26 '09 at 18:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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