diff src/main/java/jp/ac/u_ryukyu/treevnc/test/TestTextBox.java @ 32:758d025ee24b

add TextBox.java
author one
date Mon, 03 Sep 2012 17:34:52 +0900
parents
children a6dc674546f2
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/java/jp/ac/u_ryukyu/treevnc/test/TestTextBox.java	Mon Sep 03 17:34:52 2012 +0900
@@ -0,0 +1,17 @@
+package jp.ac.u_ryukyu.treevnc.test;
+
+import jp.ac.u_ryukyu.treevnc.client.TextBoxClient;
+
+public class TestTextBox {
+	TextBoxClient text = new TextBoxClient();
+	public static void main(String[] args) {
+			TestTextBox t = new TestTextBox();
+			t.testText();
+	}
+	
+	public void testText() {
+		text.checkBox("line");
+		text.setButton();
+		text.visible();	
+	}
+}