Exercise Section 2.3 第7题
1、Use the following method printPrimes() for questions a–d.
a.为printPrimes()方法画控制流图
b.令MAXPRIMES = 4;t2测试出现数组越界错误,t1测试不会出现。
c.n=1时,测试路径访问连接while语句开始到for语句的边,而不用通过while循环体。
d.节点覆盖:{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}
边覆盖:
{(1,2),(2,3),(3,4),(4,5),(5,6),(5,9),(6,8),(8,5),(6,7),(7,9),(9,10),(9,11),(10,11), (11,2),(2,12),(12,13),(13,14),(13,16),(14,15),(15,13) }
主路径覆盖:
{(1,2,3,4,5,6,7,9,10,11),(1,2,3,4,5,6,7,9,11),(1,2,3,4,5,9,10,11),
(1,2,3,4,5,9,11),(1,2,3,4,5,6,8),(1,2,12,13,14,15),(1,2,12,13,16),
(2,3,4,5,6,7,9,10,11,2),(2,3,4,5,6,7,9,11,2),
(2,3,4,5,9,10,11,2),(2,3,4,5,9,11,2),
(3,4,5,6,7,9,10,11,2,3),(3,4,5,6,7,9,11,2,3),
(3,4,5,9,10,11,2,3),(3,4,5,9,11,2,3),
(3,4,5,6,7,9,10,11,2,12,13,14,15),(3,4,5,6,7,9,10,11,2,12,13,16),
(3,4,5,6,7,9,11,2,12,13,14,15),(3,4,5,6,7,9,11,2,12,13,16),
(3,4,5,9,10,11,2,12,13,14,15),(3,4,5,9,10,11,2,12,13,16),
(3,4,5,9,11,2,12,13,14,15),(3,4,5,9,11,2,12,13,16),
(4,5,6,7,9,10,11,2,3,4),(4,5,6,7,9,11,2,3,4),
(4,5,9,10,11,2,3,4),(4,5,9,11,2,3,4)
(5,6,8,5),(5,6,7,9,10,11,2,3,4,5),(5,6,7,9,11,2,3,4,5),
(5,9,10,11,2,3,4,5),(5,9,11,2,3,4,5),
(6,8,5,6),(6,7,9,10,11,2,3,4,5,6),(6,7,9,11,2,3,4,5,6),
(6,8,5,9,10,11,2,12,13,14,15),(6,8,5,9,11,2,12,13,16)
(7,9,10,11,2,3,4,5,6,7),(7,9,11,2,3,4,5,6,7),
(7,9,10,11,2,3,4,5,6,8),(7,9,11,2,3,4,5,6,8),
(8,6,5,8),(8,5,6,7,9,10,11,2,12,13,14,15),(8,5,6,7,9,11,12,13,16)
(9,10,11,2,3,4,5,6,7,9),(9,11,2,3,4,5,6,7,9),
(9,10,11,2,3,4,5,9),(9,11,2,3,4,5,9),
(10,11,2,3,4,5,6,7,9,10),(10,11,2,3,4,5,9,10),
(11,2,3,4,5,6,7,9,10,11),(11,2,3,4,5,6,7,9,11),
(11,2,3,4,5,9,10,11),(11,2,3,4,5,9,11),
(13,14,15,13),(14,15,13,14),(14,15,13,16),(15,13,14,15)}
2、基于Junit 及Eclemma (jacoco)实现一个主路径覆盖的测试。
测试代码为:
1 package hw.test; 2 3 import static org.junit.Assert.*; 4 5 import org.junit.Before; 6 import org.junit.Test; 7 8 import hw.test.Primes; 9 10 public class testPrimes { 11 private Primes t; 12 @Before 13 public void setUp() throws Exception { 14 t = new Primes(); 15 } 16 17 @Test 18 public void testCase() { 19 t.printPrimes(7); 20 } 21 }
测试结果为: