《软件测试》实验
实验二 单元测试
实验目的
(1) 用JUnit编写单元测试;
(2) 学习代码覆盖率和性能监测工具的使用;
实验内容
1、 在博客园http://www.cnblogs.com/开通自己的技术博客
并写一段个人简介(不少于100字)
2、 学习单元测试和代码覆盖率工具的使用
(1)写一个程序,用于分析一个字符串中各个单词出现的频率,并将单词和它出现的频率输出显示。(单词之间用空格隔开,如“Hello World My First Unit Test”);
(2)编写单元测试进行测试;
(3)用ElcEmma查看代码覆盖率,要求覆盖达到100%。
package cn.zenith.test;
import java.util.HashMap;
import java.util.Map;
import org.junit.Test;
/**
* @param */
public class Test2 {
@Test
public void index() {
String strWords = "zenith";
String[] words_Array = strWords.split(" ");
Map<String,Integer> words_Map=new HashMap<String, Integer>();
int arrLength = words_Array.length;
for(int i=0;i<arrLength;i++){
if(!words_Map.containsKey(words_Array[i])){
words_Map.put(words_Array[i], 1);
System.out.println(words_Array[i]);
System.out.println("appear");
System.out.println(words_Map.put(words_Array[i], 1));
System.out.println("count");
}else{
int currentNum = words_Map.get(words_Array[i])+1;
words_Map.remove(words_Array[i]);
words_Map.put(words_Array[i], currentNum);
System.out.println(words_Array[i]);
System.out.println("appear");
System.out.println(words_Map.put(words_Array[i], currentNum));
System.out.println("count");
}
}
}
}
3、 学习单元测试代码覆盖率工具的使用
(1)把一个英语句子中的单词次序颠倒后输出。例如输入“how are you”,输出“you are how”;
(2)编写单元测试进行测试;
(3)用ElcEmma查看代码覆盖率,要求覆盖率达到100%。
package cn.zenith.test;
import org.junit.Test;
/**
* @param
*/
public class Test2 {
@Test
public void index() {
StringBuffer str = new StringBuffer();
str.append("how are you");
System.out.println("颠倒后输出:"+str.reverse());
}
}