summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected
diff options
context:
space:
mode:
authortof <>2007-07-17 08:02:49 +0000
committertof <>2007-07-17 08:02:49 +0000
commitebba13ebd9566215910897f29b31464f2c65f6b6 (patch)
tree7c89ced93e24a949f5f172eca81912d2a4b9043a /tests/FunctionalTests/tickets/protected
parente087216f1cf8eb6dc16b0c381c3d84960ae8ecb6 (diff)
Add functional test for Ticket656
Diffstat (limited to 'tests/FunctionalTests/tickets/protected')
-rw-r--r--tests/FunctionalTests/tickets/protected/pages/Ticket656.page7
-rw-r--r--tests/FunctionalTests/tickets/protected/pages/Ticket656.php9
2 files changed, 16 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket656.page b/tests/FunctionalTests/tickets/protected/pages/Ticket656.page
new file mode 100644
index 00000000..aa5d11b2
--- /dev/null
+++ b/tests/FunctionalTests/tickets/protected/pages/Ticket656.page
@@ -0,0 +1,7 @@
+<com:TContent ID="Content">
+
+<com:TDatePicker Id="datePicker" InputMode="DropDownList"/>
+
+<com:System.Web.UI.ActiveControls.TActiveLabel id="lblStatus"/>
+<com:System.Web.UI.ActiveControls.TActiveButton id="btnUpdate" Text="Update" OnClick="updateLbl"/>
+</com:TContent> \ No newline at end of file
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket656.php b/tests/FunctionalTests/tickets/protected/pages/Ticket656.php
new file mode 100644
index 00000000..943908c9
--- /dev/null
+++ b/tests/FunctionalTests/tickets/protected/pages/Ticket656.php
@@ -0,0 +1,9 @@
+<?php
+class Ticket656 extends TPage
+{
+ public function updateLbl ($sender,$param)
+ {
+ $this->lblStatus->setText($this->datePicker->getDate());
+ }
+}
+?> \ No newline at end of file