使用 JMockit 期望的模拟工具包

发布于 2024-07-18 05:08:30 字数 392 浏览 7 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必了 2024-07-25 05:08:30

默认jmock只能mock接口。 要模拟课程,您需要遵循这些说明

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文