工具篇:如何使用junit.jar进行测试
Posted newwind
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了工具篇:如何使用junit.jar进行测试相关的知识,希望对你有一定的参考价值。
一、网上下载:junit.jar包
下载地址:https://sourceforge.net/projects/junit/?source=typ_redirect
二、导入指定项目中
三、在指定方法前使用@Test
1 package com.xfwl.reflection; 2 3 import org.junit.Test; 4 /** 5 * 测试类 6 * @function 7 * @author 小风微凉 8 * @time 2018-6-3 下午12:28:38 9 */ 10 public class TestAction { 11 12 @Test 13 public void testGetClass() throws ClassNotFoundException { 14 System.out.println("123"); 15 } 16 }
四、运行方式使用:直接在带有@Test注解的方法上上点击右键 --> run as --> JUnit Test
以上是关于工具篇:如何使用junit.jar进行测试的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Gradle 中的本地 JUnit Jar 而不是 Maven Central?