为 Eclipse 中现有类中的新方法生成 JUnit 存根

发布于 2024-09-29 07:46:16 字数 266 浏览 5 评论 0原文

这个问题与 如何在中创建 JUnit 存根方法密切相关eclipse? 但它没有回答我的具体问题。

假设您有一个现有的 JUnit 测试用例类,如果您向目标类添加一个方法(或选择测试以前未测试的方法),是否有办法告诉 Eclipse 为“新”方法生成存根在现有的测试用例中而不创建新的测试用例类?

This question is tangentially related to How can I create JUnit stub methods in eclipse? but it doesn't answer my specific question.

Assuming you have an existing JUnit test case class, if you add a method to the target class (or choose to test a previously untested method), is there a way to tell Eclipse to generate the stub for the "new" method(s) in the existing TestCase without creating a new test case class?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

坚持沉默 2024-10-06 07:46:16
  1. 从 MarketPlace 安装 MoreUnit 扩展。
  2. 打开包层次结构面板。
  3. 向下导航到该类
    你已经修改了。
  4. 右键单击新方法。
  5. 选择“生成测试”。生成的存根将出现在您的 ClassTest 文件中。
  1. Install the MoreUnit extension from the MarketPlace.
  2. Open the package hierarchy panel.
  3. Navigate down to the class that
    you've modified.
  4. Right click on the new method.
  5. Select "Generate Test". The generated stub will appear in your ClassTest file.
青柠芒果 2024-10-06 07:46:16

我的解决方案。

我只是通过标准的“创建 JUnit 测试用例”

选择要测试的文件。 ->新 Junit 测试用例

完成创建测试用例的正常过程,但仅选择那些您想要新存根的测试用例。

该文件是使用存根创建的,我现在将其复制到现有的测试用例文件中。
删除新创建的测试文件类。

当您手动创建它们时,这不是最有效的,但比“厚指法”更快。

大卫

My solution.

I simply go through the standard 'create JUnit test case'

Select file to test. -> New Junit test case

Go through the normal process in creating the test case, but only select those that you want new stubs for.

The file is created with the stubs, which I now copy into the existing test case file.
Delete the newly created test file class.

It's not the most efficient, but quicker than 'thick fingering' when you create them manually.

David

别挽留 2024-10-06 07:46:16

单元测试的通常工作周期是首先创建测试用例,

public void test_new_method() {
    ClassUnderTest x = new ClassUnderTest();
    x.NewMethod();
}

此时 Eclipse 会警告您方法“NewMethod”不存在。您只需选择“快速修复”(我不确定是 Ctrl-1 或 Ctrl-2)来创建类中缺少的方法。

The usual working cycle with unit tests is to create the test case first

public void test_new_method() {
    ClassUnderTest x = new ClassUnderTest();
    x.NewMethod();
}

At that point Eclipse will give you a warning that the method "NewMethod" does not exist. Than you simply select a "Quick Fix" (Ctrl-1 or Ctrl-2 i'm not sure) to create the missing method in the class.

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