diff options
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php b/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php new file mode 100644 index 00000000..3291189c --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php @@ -0,0 +1,11 @@ +<?php
+
+class PageStateTest extends TPage
+{
+ function button1_oncallback($sender, $param)
+ {
+ $this->label1->Text .= " button1 clicked ";
+ }
+}
+
+?>
\ No newline at end of file |