软件测试:3.Exercise Section 2.3

/************************************************************
 * Finds and prints n prime integers
 * Jeff Offutt, Spring 2003
*************************************************************/
private static void printPrimes(int n) {
    int curPrime;        //Value currently considered for primeness
    int numPrimes;        // Number of primes found so far;
    boolean isPrime;    //Is curPrime prime?
    int[] primes = new int[MAXPRIMES];    // The list of primes.

    // Initialize 2 into the list of primes.
    primes[0] = 2;
    numPrimes = 1;
    curPrime = 2;
    while(numPrimes < n) {
        curPrime++; // next number to consider...
        isPrime = true;
        for(int i = 0; i <= numPrimes; i++ ) {
            //for each previous prime.
            if(isDvisible(primes[i],curPrime)) {
                //Found a divisor, curPrime is not prime.
                isPrime = false;
                break;
            }
        }
        if(isPrime) {
            // save it!
            primes[numPrimes] = curPrime;
            numPrimes++;
        }
    }// End while

    // Print all the primes out
    for(int i = 0; i < numPrimes; i++) {
        System.out.println("Prime: " + primes[i] );

    }

}// End printPrimes.

  Questions:

  (a) Draw the control flow graph for the printPrimes() method.

  (b) Consider test cases t1 = (n = 3) and t2 = ( n = 5). Although these tour the same prime paths in printPrime(), they do not necessarily find the same faults. Design a simple fault that t2 would be more likely to discover than t1 would.

  (c) For printPrimes(), find a test case such that the corresponding test path visits the edge that connects the beginning of the while statement to the for statement without going through the body of the while loop.

  (d) Enumerate the test requirements for node coverage, edge coverage, and prime path coverage for the graph for printPrimes().

  (e) List test paths that achieve node coverage but not edge coverage ont the graph.

  (f) List test paths that achieve edge coverage but not prime path coverage on the graph.

  Answers:

  (a) Draw the control flow graph for the printPrimes() method:

  (b) 将MAXPRIMES设置为4时,t2会发生数组越界错误,但t1不会发生错误。

  (c) n=1

  (d) Node Coverage

    TR={1,2,3,4,5,6,7,8,9,10,11,12,13,14}

   Edge Coverage

    TR={(1,2), (2,3), (2,10), (3,4), (4,5), (5,6), (5,8), (6,5), (6,7), (7,8), (8,2),(8,9), (9,2), (10,11), (11,12), (11,14), (12,13), (13,11)}

   Prime Path Coverage

    Test Paths: [1,2,3,4,5,6,7],
          [1,2,3,4,5,6,8,9,10,11],
          [1,2,3,4,5,6,8,9,11],
          [1,2,3,4,5,9,10,11],
          [1,2,3,4,5,9,11],
          [1,2,12,13,14,15],
          [1,2,12,16],
          [2,3,4,5,6,8,9,10,11,2],
          [2,3,4,5,6,8,9,11,2],
          [2,3,4,5,9,10,11,2],
          [2,3,4,5,9,11,2],
          [3,4,5,6,8,9,10,11,2,12,13,14,15],
          [3,4,5,6,8,9,11,2,12,13,14,15],
          [3,4,5,6,8,9,10,11,2,12,13,16],
          [3,4,5,6,8,9,11,2,12,13,16],
          [3,4,5,9,10,11,2,12,13,14,15],
          [3,4,5,9,11,2,12,13,14,15],
          [3,4,5,9,10,11,2,12,13,16],
          [3,4,5,9,11,2,12,13,16],
          [5,6,7,5],
          [6,7,5,9,10,11,2,12,13,14,15],
          [6,7,5,9,11,2,12,13,14,15],
          [6,7,5,9,10,11,2,12,13,16],
          [6,7,5,9,11,2,12,13,16],
          [13,14,15,13],
          [14,15,13,16]

软件测试:3.Exercise Section 2.3的更多相关文章

  1. <<C++ Primer>> 第四版Exercise Section 8.4.1 练习题

    For exercise 8.6 // ConsoleApplication10.cpp : 定义控制台应用程序的入口点. // #include "stdafx.h" #incl ...

  2. C++ 容器对象vector和list 的使用

    在<<c++ primer>>第四版Exercise Section 9.3.4 的Exercise 9.20 是这样的一道题目:编写程序判断一个vector<int&g ...

  3. vector 对象中存放指针类型数据

    <<C++ Primer>> 第四版Exercise Section 5.6 的5.1.6 有一道题是这样的:编写程序定义一个vector对象,其每个元素都是指向string类 ...

  4. C 风格字符串相加

    <<C++ Primer>> 第四版Exercise Section 4.3.1 的4.3.0 有如下题目:编写程序连接两个C风格字符串字面值,把结果存储在C风格字符串中.代码 ...

  5. C风格字符串和C++ string 对象赋值操作的性能比较

    <<C++ Primer>> 第四版 Exercise Section 4.3.1 部分Exercise 4.2.9 习题如下: 在自己本机执行如下程序,记录程序执行时间: # ...

  6. C++ Primer 5th Edition自学笔记(1)

    好吧,第一次写东西...如何下手呢...(请无视) -------------------------------------------------------------- Chapter 1. ...

  7. MIT 6.828 JOS学习笔记5. Exercise 1.3

    Lab 1 Exercise 3 设置一个断点在地址0x7c00处,这是boot sector被加载的位置.然后让程序继续运行直到这个断点.跟踪/boot/boot.S文件的每一条指令,同时使用boo ...

  8. Conway's Game of Life: An Exercise in WPF, MVVM and C#

    This blog post was written for the Lockheed Martin Insight blog, sharing here for the external audie ...

  9. CMSC 216 Exercise #5

    CMSC 216 Exercise #5 Spring 2019Shell Jr (”Shellito”) Due: Tue Apr 23, 2019, 11:30PM1 ObjectivesTo p ...

随机推荐

  1. 2019 Power BI最Top50面试题,助你面试脱颖而出系列<中>

    敲黑板啦!!! 来来来 大家双眼看黑板 开始划重点啦 这篇大部分是"考试"必考题 你们一定要好好的牢记在心 一分都不要放过 刷题中... Power BI面试题目-DAX 9)什么 ...

  2. iis7 绑定多个ssl证书

    默认情况下iis上只能绑定一个ssl证书,如果多的话 会只认一个. 停止IIS 运行[ CMD]  ,  输入 [iisreset /STOP] 第一步:修改配置文件. 然后打开:C:/Windows ...

  3. Netty 服务端启动过程

    在 Netty 中创建 1 个 NioServerSocketChannel 在指定的端口监听客户端连接,这个过程主要有以下  个步骤: 创建 NioServerSocketChannel 初始化并注 ...

  4. ppt图片在word中不能正常显示,只显示为矩形框的解决方法

    word中插入的其他图片是好的,但是从ppt复制粘贴过来的图片只显示个框. 解决方法:以下红框中内容去选中.

  5. Unity中对系统类进行扩展的方法

    Unity扩展系统类,整合简化代码 本文提供全流程,中文翻译. Chinar 坚持将简单的生活方式,带给世人!(拥有更好的阅读体验 -- 高分辨率用户请根据需求调整网页缩放比例) Chinar -- ...

  6. flask中注册验证码和分页

    注册验证码.核心思路,替换注册页面的img标签的src属性. 1.准备好文件夹:captcha2.导包 from utils.captcha.captcha import captcha3.验证码生成 ...

  7. Java基于opencv实现图像数字识别(二)—基本流程

    Java基于opencv实现图像数字识别(二)-基本流程 做一个项目之前呢,我们应该有一个总体把握,或者是进度条:来一步步的督促着我们来完成这个项目,在我们正式开始前呢,我们先讨论下流程. 我做的主要 ...

  8. 关于Java数据转存的中MultipartFile转File的问题(转)

    转自http://www.cnblogs.com/zuoxiaoxia/p/6116942.html 错误背景:由于文件储存在第三方的服务器上,所有需要讲将接收到MultipartFile文件 转换为 ...

  9. javap反汇编命令

    https://blog.csdn.net/qq_36330643/article/details/73841313 有关反汇编的具体

  10. selenium_Python3_邮箱登录:动态元素定位

    这里的关键是动态frame定位: 其他元素定位不用多说,常规操作. 不过需要注意加上这个: from selenium.webdriver.remote.webelement import WebEl ...