TestNG Eclipse 插件:如何更改 [New -> > 方法的名称前缀TestNG 类]?

发布于 2024-11-29 09:04:47 字数 394 浏览 0 评论 0原文

首选

@Test
public void testMethodName() {} // [New -> JUnit Test Case]

@Test
public void methodName() {} // [New -> TestNG Class]

我可以通过以下步骤实现我想要的:

  1. [New -> JUnit 测试用例]
  2. 快速协助转换为TestNG(注释)

有更简单的方法吗?

Preferred

@Test
public void testMethodName() {} // [New -> JUnit Test Case]

than

@Test
public void methodName() {} // [New -> TestNG Class]

I could achieve what I want by following steps :

  1. [New -> JUnit Test Case].
  2. Quick Assist : Convert to TestNG (Annotations)

Any easier way ?

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

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

发布评论

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

评论(1

聊慰 2024-12-06 09:04:47

这很容易添加,但我不确定它到底有多有用:最终,您将需要重命名您的方法以描述它作为测试实际执行的操作。例如,名为 createAccount() 的方法可能应该使用名为 accountShouldBeCreated() 的测试方法进行测试。

此外,单个方法通常最终会被多个测试方法测试:accountShouldBeCreated()alreadyExistingAccountShouldNotBeAllowed()等...

This would be pretty easy to add but I'm not sure how useful it really is: ultimately, you will want to rename your method to describe what it actually does as a test. For example, a method called createAccount() should probably be tested with a test method called accountShouldBeCreated().

Also, a single method usually ends up being tested by more than one test method: accountShouldBeCreated(), alreadyExistingAccountShouldNotBeAllowed(), etc...

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