summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests
diff options
context:
space:
mode:
authorxue <>2006-02-26 03:54:55 +0000
committerxue <>2006-02-26 03:54:55 +0000
commitcad2910ee9f2554570d16aab283bd6c18b5c1d0b (patch)
treefa2cb495085489663657445898ed4f921b49f6a4 /tests/FunctionalTests/tickets/tests
parent6e59b5a57df511e2ee92f1f66eb0af072486ae95 (diff)
Fixed #72.
Diffstat (limited to 'tests/FunctionalTests/tickets/tests')
-rw-r--r--tests/FunctionalTests/tickets/tests/Ticket72TestCase.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php
new file mode 100644
index 00000000..6d864899
--- /dev/null
+++ b/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php
@@ -0,0 +1,16 @@
+<?php
+
+class Ticket72TestCase extends SeleniumTestCase
+{
+ function test()
+ {
+ $this->open('tickets/index.php?page=Ticket72');
+ $this->type("ctl0\$Content\$K1", "abc");
+ $this->type("ctl0\$Content\$K2", "efg");
+ $this->clickAndWait("//input[@type='submit' and @value='Send']", "");
+ $this->verifyTextPresent("efg", "");
+ $this->verifyTextNotPresent("abcefg", "");
+ }
+}
+
+?> \ No newline at end of file