From 614abf2377f4348df56f34de674b27ad1ffe2917 Mon Sep 17 00:00:00 2001 From: xue <> Date: Sat, 11 Mar 2006 18:16:38 +0000 Subject: Deleted some unused tests. --- .../protected/pages/Tickets/Ticket_21.php | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 tests/FunctionalTests/protected/pages/Tickets/Ticket_21.php (limited to 'tests/FunctionalTests/protected/pages/Tickets/Ticket_21.php') diff --git a/tests/FunctionalTests/protected/pages/Tickets/Ticket_21.php b/tests/FunctionalTests/protected/pages/Tickets/Ticket_21.php deleted file mode 100644 index 7a9e3519..00000000 --- a/tests/FunctionalTests/protected/pages/Tickets/Ticket_21.php +++ /dev/null @@ -1,37 +0,0 @@ -IsPostBack) - $this->setViewState("clicks", 0); - } - - public function doClick($sender, $param) - { - $clicks = $this->getViewState("clicks"); - $clicks++; - $this->label1->setText("Radio button clicks: $clicks"); - $this->setViewState("clicks", $clicks); - } -} - -class Ticket_21_TestCase extends SeleniumTestCase -{ - function test() - { - $this->open(Prado::getApplication()->getTestPage(__FILE__)); - $this->assertTitle("Verifying Ticket 21"); - $this->clickAndWait("ctl0_Content_button1"); - $this->verifyTextPresent("Radio button clicks: 1", ""); - $this->click("ctl0_Content_button1"); - $this->verifyTextPresent("Radio button clicks: 1", ""); - - } -} - -?> - -- cgit v1.2.3