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

时间:2011-08-12 08:59:09

标签: java eclipse testng

优选

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

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

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

  1. [New -> JUnit Test Case]
  2. Quick AssistConvert to TestNG (Annotations)
  3. 更简单的方法?

1 个答案:

答案 0 :(得分:1)

这很容易添加,但我不确定它有多么有用:最终,你需要重命名你的方法来描述它实际上作为测试的功能。例如,可能应使用名为createAccount()的测试方法测试名为accountShouldBeCreated()的方法。

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