软件测试第二次作业

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了软件测试第二次作业相关的知识,希望对你有一定的参考价值。

第二题

实现代码如下:

package com.liu.ST2;

import java.util.Scanner;

public class Question2 {

public static void reverse(String[] args) {

Scanner input = new Scanner(System.in);

System.out.print("请输入英文:");

String str = input.nextLine();

String[] strArr = str.split("\\s+|[,]");

StringBuffer result = new StringBuffer();

for (int i = strArr.length - 1; i >= 0; i--) {

result.append(strArr[i] + " ");

}

result.setCharAt(str.length() - 0, ‘ ‘);

System.out.println("颠倒顺序后的结果为:" + result.toString());

}
}

Junit测试代码如下:

package com.liu.ST2;

import static org.junit.Assert.*;

import org.junit.Test;

public class Question2Test {

@Test
public void test() {
Question2 q2 = new Question2();
q2.reverse(null);;
}

}

Junit测试及ElcEmma覆盖率如下:技术分享

因第二次只测试第二题,并没有测试第一题,所以第一题的覆盖率为0%.

以上是关于软件测试第二次作业的主要内容,如果未能解决你的问题,请参考以下文章

软件测试第二次作业

软件测试 第二次作业

软件测试第二次作业

软件测试第二次作业

闽江学院2015-2016学年下学期《软件测试》课程-第二次作业(个人作业)

第二次作业