diff options
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php b/tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php new file mode 100644 index 00000000..3fa5c7e2 --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php @@ -0,0 +1,16 @@ +<?php
+
+class TInPlaceTextBoxTest extends TPage
+{
+ function load_text($sender, $param)
+ {
+ $sender->Text = "muahaha";
+ }
+
+ function label1_changed($sender, $param)
+ {
+ $this->status->Text = "Status: ". $sender->Text;
+ }
+}
+
+?>
\ No newline at end of file |