摘要: Task1:Develop the project “HelloWorld” -A .java program: Just print out “Hello” + your name; -A test case using Junit to verify whether the prog... 阅读全文
posted @ 2015-04-27 17:17 CassieCheese 阅读(250) 评论(0) 推荐(0) 编辑
摘要: I searched some information about white box testing, which helps me understand it better.White-box testing is a method of testing the application at t... 阅读全文
posted @ 2015-04-19 22:23 CassieCheese 阅读(309) 评论(0) 推荐(0) 编辑
摘要: We were introduced a powerful way of software testing named peer reviewd. It means the author of the project tests is with his or her colleagues. In t... 阅读全文
posted @ 2015-04-12 22:52 CassieCheese 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 本周作业为写一个程序判断输入的年份是否为闰年。闰年有以下两种情况: 1】输入年份%4 == 0 且 输入年份%100 != 0 为闰年; 2】输入年份%400 == 0 为闰年。但是按照课上写的那段代码(见下方附)来看,使用时会有以下问题: 1】输入的是一个字符串(如19a) 2】输入的为负... 阅读全文
posted @ 2015-04-07 19:34 CassieCheese 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 代码(java):package softwareTest;import javafx.application.Application;import javafx.event.ActionEvent;import javafx.event.EventHandler;import javafx.sce... 阅读全文
posted @ 2015-03-29 22:49 CassieCheese 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 划分等价类:编号有效等价类编号无效等价类0长度1-62长度01字符0-9;a-z;A-Z3长度>=74除0-9,a-z,A-Z之外字符测试用例:编号测试用例期待输出实际输出0aA01正确正确1Null请正确输入请正确输入2aabbccdd请正确输入请正确输入3abc!请正确输入请正确输入0:1:2:... 阅读全文
posted @ 2015-03-22 19:09 CassieCheese 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Software testing is an investigation conducted to provide stakeholders with information about the quality of the product or service under test.[1] Sof... 阅读全文
posted @ 2015-03-16 14:08 CassieCheese 阅读(114) 评论(0) 推荐(0) 编辑