JUnit01Eclipse添加JUnite

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JUnit01Eclipse添加JUnite相关的知识,希望对你有一定的参考价值。

JUnit 傻瓜教程

添加一個java工程

技术分享

點擊右鍵選擇Properties 

技术分享

创建一个source folder 目的就是把测试类和被测试的类分开

技术分享

 添加一个类  加法 乘法

public class MathOperation {

public int add(int a,int b){

int result=a+b;

return result;
}

public int multiply(int a,int b){
int result = a * b;
return result;
}

}

 添加一个测试类

技术分享

 

 技术分享

技术分享

 

 生成的测试类中添加断言

public class MathOperationTest {

MathOperation mo=new MathOperation();
@Test
public void testAdd() {
//fail("Not yet implemented");
int expected =3;
int value= mo.add(1, 2);

assertEquals(expected, value);

}

@Test
public void testMultiply() {
//fail("Not yet implemented");

int expected =4;
int value= mo.multiply(2, 2);

assertEquals(expected, value);
}

}

 

run as  JUnit test

 






























以上是关于JUnit01Eclipse添加JUnite的主要内容,如果未能解决你的问题,请参考以下文章

Eclipse Oxygen.2 Release (4.7.2)添加JUnit

在eclipse之中使用Junit

基于webdriver的jmeter性能测试-Eclipse+Selenium+JUnit生成jar包

在 Eclipse 的 JUnit 视图中排序单元测试

在 Eclipse 中运行 JUnit 测试会引发 SecurityException

SOFTWARE TESTING LAB 01