使用 JMockit 期望的模拟工具包
我正在尝试使用 JMockit Expectations 来模拟 java.awt.Toolkit.beep() 。 我的测试用例中有以下代码:
new Expectations() {
Toolkit mock;
{
mock.beep();
}
}.endRecording();
当我运行测试用例 (JUnit 4) 时,我在“new Expectations”行中收到以下异常:
java.lang.ClassFormatError: Code attribute in native or abstract methods in class file $Mock
有什么想法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认jmock只能mock接口。 要模拟课程,您需要遵循这些说明
The default jmock can only mock interface. To mock class, you need to following these instructions