如果你是用maven管理包
1.导入Juint4的依赖包
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
然后在eclips的项目下
创建一个Source Folder
然后创建一个类
再类上可加上 @Before
@Test 等注解
然后直接运行标有 @Test 注解的方法
点在方法上 右击 run as 选择 junit test 即可