Java TestName类使用实例

avatar
作者
筋斗云
阅读量:1

下面是一个使用TestName类的Java实例:

import org.junit.Rule; import org.junit.Test; import org.junit.rules.TestName; public class TestNameExample { @Rule public TestName testName = new TestName(); @Test public void testMethod1() { System.out.println("当前测试方法名称:" + testName.getMethodName()); } @Test public void testMethod2() { System.out.println("当前测试方法名称:" + testName.getMethodName()); } @Test public void testMethod3() { System.out.println("当前测试方法名称:" + testName.getMethodName()); } } 

在这个例子中,我们使用了JUnit的TestName规则。该规则允许我们在测试方法中获取当前测试方法的名称。

在@Test注解的测试方法中,我们通过调用testName.getMethodName()来获取当前测试方法的名称,并将其打印到控制台上。

当我们运行这个测试类时,我们将看到以下输出:

当前测试方法名称:testMethod1 当前测试方法名称:testMethod2 当前测试方法名称:testMethod3 

这表明TestName规则成功地帮助我们获取了当前测试方法的名称。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!