软件工程检验实验.doc
,淮海工学院计算机科学系实验报告书课程名: 软件工程 题 目: 软件测试实验 班 级: 软件121 学 号: 2012122722 姓 名: 朱德坤 评语:成绩: 指导教师: 批阅时间: 年 月 日,软件测试验报告要求1目的与要求:1)系统学习和理解结构化软件工程实现阶段的基本概念、原理、技术和方法;2)掌握软件测试的基本技术和方法,特别是白盒测试与黑盒测试技术和方法;3)通过实验,要逐步提高白盒测试与黑盒测试技术的实际应用能力;4)熟悉C+编程环境下编写、调试单元代码的基本操作技术和方法;5)按照实验题目要求独立完成本次试验任务,严禁拷贝、抄袭他人设计成果;6)认真书写实验报告(要求给出完整的测试信息,如测试程序、测试用例,测试结果分析等),并于5月5日以前提交。2 实验内容或题目1. 选择结构化详细设计试验中自己设计的某一具有代表性控制结构模块(含有分支和循环结构),并用C语言实现(提前准备好,每种测试用例分别写在作业本上,上机时带上检查),而后分别完成下述2、3、4各题测试用例设计和测试结果分析;2. 采用白盒测试技术中逻辑覆盖方法(至少包含语句覆盖、判定覆盖、条件覆盖、条件组合覆盖)设计测试用例,完成测试(测试屏幕截图)和测试结果分析;3. 采用白盒控制结构测试技术的基本路径测试和边界测试方法设计相应测试用例,并完成测试和测试结果分析;4. 采用黑盒测试技术中的等价类划分方法设计相应测试用例(可重选适合黑盒测试技术的模块),并完成程序测试和测试结果分析;3 实验步骤与源程序程序流程图:流图:程序:/拥有超级用户superuser,密码zdk #include<iostream> #include<fstream> #include<string> #include<conio.h> #include<windows.h> using namespace std; int PD; /全局判断执行码 void SetPos(int i,int j) /界面光标位置函数COORD pos= i-1,j-1;HANDLE Out=GetStdHandle(STD_OUTPUT_HANDLE);SetConsoleCursorPosition(Out,pos); void jm() /绘制登陆界面 system("cls"); SetPos(20,3);cout<<"*"SetPos(20,4);cout<<"* 欢迎使用图书管馆图书管理系统 *" SetPos(20,5);cout<<"*" SetPos(30,7); cout<<"1.注册" SetPos(30,8); cout<<"2.登录" SetPos(30,9); cout<<"3.退出" SetPos(30,12); cout<<"请输入对应功能的序号:" void Zjm() /绘制登录后界面 int i; if(PD=0) PD=1; system("cls"); return; SetPos(25,3); if(PD=1)cout<<"1.查看我的图书信息" else cout<<"1.管理其他用户" SetPos(25,4); cout<<"2.退出" SetPos(20,6); cout<<"请输入序号:" cin>>i; switch(i) case 1: cout<<"图书信息:.n.n.n" system("pause"); exit(0); /登陆后的执行区域,预留空间 case 2:PD=1; system("cls"); return; class user /定义用户类 public: user(string w1,string w2):user1(w1),password(w2) void save() /保存成员函数 ofstream ofile("C:Program Filesdata.txt",ios_base:app); ofile<<user1<<endl<<password<<endl; ofile.close(); private: string user1; string password; ;void zhuce() /注册全局函数 char user125,user225="superuser",password25,password125; ofstream ofile; ofile.open("C:Program Filesdata.txt",ios_base:app); ofile.close(); cout<<"请输入用户名:" cin>>user1; if(strcmp(user1,user2)=0) PD=0; cout<<"您不能注册管理员帐号" Sleep(1000); return; ifstream ifile; ifile.open("C:Program Filesdata.txt",ios_base:in); while(!ifile.eof() ifile.getline(user2,25,n); ifile.getline(password,25,n); if(strcmp(user1,user2)=0 ) cout<<"该用户已存在"Sleep(1000);ifile.close(); PD=0; return; ifile.close(); Set: cout<<"请输入密码:" cin>>password; cout<<"请再次输入密码:" cin>>password1; if(strcmp(password,password1)!=0) cout<<"您两次输入的密码不一致!"<<endl<<endl; system("pause"); goto Set; user use(user1,password); use.save(); cout<<endl<<endl<<"保存成功!"<<endl; Sleep(1000); system("cls"); PD=0; void denglu() /登陆函数 char user25,password25; char user125="superuser",password125="zdk" cout<<"tt请输入用户名:" cin>>user; cout<<"tt请输入密码:" cin>>password; if(strcmp(user1,user)=0 && strcmp(password,password1)=0) cout<<"ttt登陆成功"Sleep(1000);PD=2; system("cls"); cout<<"欢迎管理员登录!" return; ifstream ifile; ifile.open("C:Program Filesdata.txt",ios_base:in); while(!ifile.eof() ifile.getline(user1,25,n); ifile.getline(password1,25,n); if(strcmp(user1,user)=0 && strcmp(password1,password1)=0) cout<<"ttt登陆成功" PD=1; ifile.close(); system("cls"); cout<<"欢迎用户"<<user<<"登录" return; cout<<"ttt该用户没有注册或密码错误.n" PD=0; ifile.close(); Sleep(2000); system("cls"); void xuanze() /选择函数 int a; cin>>a; switch(a) case 1: zhuce(); break; case 2: denglu(); break; case 3: exit(0); /退出 default: PD=0; cout<<"序号错误" Sleep(500); int main() /主函数 for(PD=1; PD;) jm(); xuanze(); Zjm(); system("cls"); SetPos(25,2); cout<<"感谢使用本软件!" return 0; 4 测试数据与实验结果(可以抓图粘贴)测试:(1) 语句覆盖路径1:1-2-3-5-7-9路径2:1-2-4-6-8(2) 判定覆盖路径1:1-2-3-5-7-9路径2:1-2-3-5-2路径3:1-2-4-6-2路径4:1-2-4-6-8(3) 条件覆盖路径1:1-2-3-5-7-9路径2:1-2-4-6-8路径3:1-2-3-5-2-4-6-8(4) 条件组合覆盖路径1:1-2-3-5-7-9路径2:1-2-4-6-8路径3:1-2-3-5-2路径4:1-2-3-5-7-10路径5:1-2-4-6-25 结果分析与实验体会通过实验,要逐步提高白盒测试与黑盒测试技术的实际应用能力。统学习和理解结构化软件工程实现阶段的基本概念、原理、技术和方法。掌握软件测试的基本技术和方法,特别是白盒测试与黑盒测试技术和方法;