diff options
author | wei <> | 2006-07-05 04:23:43 +0000 |
---|---|---|
committer | wei <> | 2006-07-05 04:23:43 +0000 |
commit | 8d8b6688cbbb1febe92012ccc2a4158fa594fcb3 (patch) | |
tree | a9f5d43ea3a6efa4a6590192e4ae7f08655310bb /tests/FunctionalTests/tickets/protected/pages/Ticket225.php | |
parent | 91c4292a8063dd2d7a27e7629c015faa4bf052d6 (diff) |
Fixed #223 #225
Diffstat (limited to 'tests/FunctionalTests/tickets/protected/pages/Ticket225.php')
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket225.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket225.php b/tests/FunctionalTests/tickets/protected/pages/Ticket225.php new file mode 100644 index 00000000..2cc3fc38 --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket225.php @@ -0,0 +1,19 @@ +<?php + +class Ticket225 extends TPage +{ + function button4_Clicked() + { + $this->label1->setText($this->getGroupIDs($this->button1)); + } + + private function getGroupIDs($radio) + { + $ids = ''; + foreach($radio->getRadioButtonsInGroup() as $control) + $ids .= " ".$control->getUniqueID(); + return $ids; + } +} + +?>
\ No newline at end of file |