标签:color 测试 ace 测试用例 cep exce src 功能 四则运算
最好能提供图形用户界面(根据自己能力选做,以完成上述功能为主)
??在本次结对作业中我是一名领航员,负责辅助驾驶员完成全部代码工作,并且为关键函数选用合适的覆盖标准设计测试用例,并编写代码进行单元自动测试。
根据代码检查表对驾驶员的本次工作进行评价,以及对于本次工作完成500字以上的总结。
四则运算代码
选用条件覆盖对关键函数测试,代码如下:
package softwar;
import static org.junit.Assert.*;
import org.junit.Test;
public class MainTest {
@Test
public void test() {
try {
Main.PrintQuestionsFile(10, 1, 20, 1, 1);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void test1() {
try {
Main.PrintQuestionsFile(10, 1, 20, 1, 0);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void test2() {
try {
Main.PrintQuestionsFile(10, 1, 20, 0, 1);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void test3() {
try {
Main.PrintQuestionsFile(10, 1, 20, 0, 0);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void test4() {
try {
Main.PrintQuestionsFile(10, 0, 20, 1, 1);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}@Test
public void test5() {
try {
Main.PrintQuestionsFile(10, 0, 20, 1, 0);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void test6() {
try {
Main.PrintQuestionsFile(10, 0, 20, 0, 1);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Test
public void test7() {
try {
Main.PrintQuestionsFile(10, 0, 20, 0, 0);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
标签:color 测试 ace 测试用例 cep exce src 功能 四则运算
原文地址:https://www.cnblogs.com/wwwf/p/8848304.html