软件测试(3)-基于等价类划分的一个小例子

程序要求从一个输入框变为3个输入框,其他要求不变

则这次的测试用例本着等价类划分的原则进行如下的修改

表格旁边的就此这次的测试代码


box No.1

box No.2 box No.3 Result
abc abc abc success
  abc abc box No.1 fail
abc   abc box No.2 fail
abc abc   box No.3 fail
*1   abcdefgh All Fail
abc *1 1bcedfgrt Only box No.1 success
*7 abc   Only box No.2 success
  1 import javafx.application.Application;
  2 import javafx.event.ActionEvent;
  3 import javafx.event.EventHandler;
  4 import javafx.scene.Scene;
  5 import javafx.scene.control.Button;
  6 import javafx.scene.control.TextField;
  7 import javafx.scene.layout.AnchorPane;
  8 import javafx.scene.text.Text;
  9 import javafx.stage.Stage;
 10
 11
 12 public class Test extends Application{
 13
 14     public static void main(String arg0[]){
 15         Test.launch(arg0);
 16     }
 17
 18     public void start(Stage stage) throws Exception {
 19         stage.setTitle("Test One");
 20         AnchorPane root = new AnchorPane();
 21
 22         Text text = new Text("请输入:");
 23         root.getChildren().add(text);
 24         AnchorPane.setTopAnchor(text, 45.0);
 25         AnchorPane.setLeftAnchor(text, 100.0);
 26
 27         final TextField textInput1 = new TextField();
 28         root.getChildren().add(textInput1);
 29         AnchorPane.setTopAnchor(textInput1, 65.0);
 30         AnchorPane.setLeftAnchor(textInput1, 30.0);
 31
 32         final TextField textInput2 = new TextField();
 33         root.getChildren().add(textInput2);
 34         AnchorPane.setTopAnchor(textInput2, 95.0);
 35         AnchorPane.setLeftAnchor(textInput2, 30.0);
 36
 37         final TextField textInput3 = new TextField();
 38         root.getChildren().add(textInput3);
 39         AnchorPane.setTopAnchor(textInput3, 125.0);
 40         AnchorPane.setLeftAnchor(textInput3, 30.0);
 41
 42         Button button = new Button();
 43         button.setText("确定");
 44         root.getChildren().add(button);
 45         AnchorPane.setTopAnchor(submit, 165.0);
 46         AnchorPane.setLeftAnchor(submit, 75.0);
 47
 48         submit.setOnAction(new EventHandler<ActionEvent>() {
 49             public void handle(ActionEvent arg0) {
 50                 if(checkString(textInput1.getText().toString()) && checkString(textInput2.getText().toString()) && checkString(textInput3.getText().toString())){
 51                      Stage stage2 = new Stage();
 52                      AnchorPane root2 = new AnchorPane();
 53
 54                      Text result = new Text("三个输入框均符合要求~");
 55                      root2.getChildren().add(result);
 56                      AnchorPane.setTopAnchor(result, 50.0);
 57                      AnchorPane.setLeftAnchor(result, 50.0);
 58
 59                      stage2.setScene(new Scene(root2, 100, 100));
 60                      stage2.show();
 61                 }else if(checkString(textInput1.getText().toString()) && checkString(textInput2.getText().toString())){
 62                     Stage stage2 = new Stage();
 63                      AnchorPane root2 = new AnchorPane();
 64
 65                      Text result = new Text("第三个输入框不符合要求~");
 66                      root2.getChildren().add(result);
 67                      AnchorPane.setTopAnchor(result, 50.0);
 68                      AnchorPane.setLeftAnchor(result, 50.0);
 69
 70                      stage2.setScene(new Scene(root2, 100, 100));
 71                      stage2.show();
 72                 }else if(checkString(textInput1.getText().toString()) && checkString(textInput3.getText().toString())){
 73                     Stage stage2 = new Stage();
 74                      AnchorPane root2 = new AnchorPane();
 75
 76                      Text result = new Text("第二个输入框不符合要求~");
 77                      root2.getChildren().add(result);
 78                      AnchorPane.setTopAnchor(result, 50.0);
 79                      AnchorPane.setLeftAnchor(result, 50.0);
 80
 81                      stage2.setScene(new Scene(root2, 100, 100));
 82                      stage2.show();
 83                 }else if(checkString(textInput2.getText().toString()) && checkString(textInput2.getText().toString())){
 84                     Stage stage2 = new Stage();
 85                      AnchorPane root2 = new AnchorPane();
 86
 87                      Text result = new Text("第一个输入框不符合要求~");
 88                      root2.getChildren().add(result);
 89                      AnchorPane.setTopAnchor(result, 50.0);
 90                      AnchorPane.setLeftAnchor(result, 50.0);
 91
 92                      stage2.setScene(new Scene(root2, 100, 100));
 93                      stage2.show();
 94                 }else if(checkString(textInput1.getText().toString())){
 95                     Stage stage2 = new Stage();
 96                      AnchorPane root2 = new AnchorPane();
 97
 98                      Text result = new Text("只有第一个输入框符合要求~");
 99                      root2.getChildren().add(result);
100                      AnchorPane.setTopAnchor(result, 50.0);
101                      AnchorPane.setLeftAnchor(result, 50.0);
102
103                      stage2.setScene(new Scene(root2, 100, 100));
104                      stage2.show();
105                 }else if(checkString(textInput2.getText().toString())){
106                     Stage stage2 = new Stage();
107                      AnchorPane root2 = new AnchorPane();
108
109                      Text result = new Text("只有第二个输入框符合要求~");
110                      root2.getChildren().add(result);
111                      AnchorPane.setTopAnchor(result, 50.0);
112                      AnchorPane.setLeftAnchor(result, 50.0);
113
114                      stage2.setScene(new Scene(root2, 100, 100));
115                      stage2.show();
116                 }else if(checkString(textInput3.getText().toString())){
117                     Stage stage2 = new Stage();
118                      AnchorPane root2 = new AnchorPane();
119
120                      Text result = new Text("只有第三个输入框符合要求~");
121                      root2.getChildren().add(result);
122                      AnchorPane.setTopAnchor(result, 50.0);
123                      AnchorPane.setLeftAnchor(result, 50.0);
124
125                      stage2.setScene(new Scene(root2, 100, 100));
126                      stage2.show();
127                 }else{
128                     Stage stage2 = new Stage();
129                      AnchorPane root2 = new AnchorPane();
130
131                      Text result = new Text("三个输入框均不符合要求~");
132                      root2.getChildren().add(result);
133                      AnchorPane.setTopAnchor(result, 50.0);
134                      AnchorPane.setLeftAnchor(result, 50.0);
135
136                      stage2.setScene(new Scene(root2, 100, 100));
137                      stage2.show();
138                 }
139             }
140         });
141
142         stage.setScene(new Scene(root, 190,225));
143         stage.show();
144     }
145
146     public boolean checkString(String str){
147         if(str.length() == 0 || str.length() >= 7){
148             return false;
149         }
150
151         char ch[] = new char[str.length()];
152         ch = str.toCharArray();
153
154         for(int i = 0; i < str.length(); i++){
155             if((ch[i] >= ‘a‘ && ch[i] <= ‘z‘)||(ch[i] >= ‘A‘ && ch[i] <= ‘Z‘)||(ch[i] >= ‘0‘ && ch[i] <= ‘9‘));
156             else{
157                 return false;
158             }
159         }
160         return true;
161     }
162
163 }
时间: 2024-10-12 15:51:36

软件测试(3)-基于等价类划分的一个小例子的相关文章

基于宿主机制作一个小系统

一.Linux系统的启动流程 1.启动程序 Linux系统的启动流程为:POST-->BIOS(BootSequence)-->MBR(bootloader,446)--> Kernel-->initrd-->(ROOTFS)/sbin/init(/etc/inittab). 首先上电自检POST:它负责完成对CPU.主板.内存.软硬盘子系统.显示子系统(包括显示缓存).串并行接口.键盘.CD-ROM光驱等的检测.主要检查硬件的好坏. 紧接着就是BIOS进行硬件相关初始化,之

java操作xml的一个小例子

最近两天公司事比较多,这两天自己主要跟xml打交道,今天更一下用java操作xml的一个小例子. 原来自己操作xml一直用这个包:xstream-1.4.2.jar.然后用注解的方式,很方便,自己只要定义好bean的层次结构就可以了,第三方包会自动生成和解析xml. 但是今天发现,这个包有两个问题: 一个是比较复杂(我是菜鸟,求别喷,我真的觉得他挺复杂的..).比如说你要想处理既有属性又有值的xml就比较麻烦.(@XStreamConverter注解这种方法报这个错:com.thoughtwor

java连接mysql的一个小例子

想要用java 连接数据库,需要在classpath中加上jdbc的jar包路径 在eclipse中,Project的properties里面的java build path里面添加引用 连接成功的一个小例子数据库如下如 代码 package query; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; impor

puppet运行慢的一个小例子

一个小例子来看下怎么debug puppet运行慢的问题. 一个小例子来看下怎么debug puppet运行慢的问题. 发现一台机器的agent运行比较缓慢,首先看下puppet server的整体性能: puppet server使用了passenger+nginx的结构,性能比较稳定,接入1200台机器左右,passenger类似于php-fpm,可以设定启动的处理进程数等参数,用来调整server的性能. 比如参数passenger_max_pool_size,这个值的设置需要考虑两个因素

Spring.Net在ASP.NET Mvc里使用的一个小例子

就贴个小例子,就不注意格式了. 1.下载dll NuGet的下载地址:http://docs.nuget.org/docs/start-here/installing-nuget 在vs的NuGet里搜索spring.web.mvc,它会自动下载SpringNet的引用包. 安装完成之后你的项目会多三个引用,项目目录../packages文件夹下面也会多出这三个文件夹里面是SpringNet的文件. 2.写代码例子 很简单的例子.定义一个接口,一个对于接口的实现类. namespace MvcA

从一个小例子认识SQL游标

原文:从一个小例子认识SQL游标 1    什么是游标: 关系数据库中的操作会对整个行集起作用. 例如,由 SELECT 语句返回的行集包括满足该语句的 WHERE 子句中条件的所有行. 这种由语句返回的完整行集称为结果集. 应用程序,特别是交互式联机应用程序,并不总能将整个结果集作为一个单元来有效地处理. 这些应用程序需要一种机制以便每次处理一行或一部分行. 游标就是提供这种机制的对结果集的一种扩展. 游标通过以下方式来扩展结果处理: 允许定位在结果集的特定行. 从结果集的当前位置检索一行或一

倒计时CountDownTimer的一个小例子

在网上看到一个小例子,练习后总结如下: 首先,布局文件中仅包含一个文本框.main.xml代码如下: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layou

javascript 利用 - 枚举思想 - 添加地名的一个小例子

利用枚举思想来添加地名,主要功能是:判断点击a标签(即当前的地名)如果在ul的li不存在的话那么就添加,有则不添加,而且还提供了相应的排序功能... HTML代码: <div id="china"> <a href="javascript:;">广州</a> <a href="javascript:;">深圳</a> <a href="javascript:;"

android 支持分组和联系人展示的一个小例子

先看效果图: 要实现这个效果,activity必须实现ExpandableListActivity @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.main); mContactListView = getExpa