Java TestName类使用实例

45次阅读
没有评论

共计 683 个字符,预计需要花费 2 分钟才能阅读完成。

下面是一个使用 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 规则成功地帮助我们获取了当前测试方法的名称。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-20发表,共计683字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)