X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=tests%2Fphpunit%2FWebTest%2FEvent%2FEventWaitListTest.php;h=fc8c3ce515df436cb4c800eb7938a32b7b4d34b5;hb=f41a7de74d7f30125ad93e4b80561ac17038c002;hp=f3692e7da41efbdedb6153f5046d1c96d8953873;hpb=22fd90d480014f0a551b25bea675a03d2153de78;p=civicrm-core.git diff --git a/tests/phpunit/WebTest/Event/EventWaitListTest.php b/tests/phpunit/WebTest/Event/EventWaitListTest.php index f3692e7da4..fc8c3ce515 100644 --- a/tests/phpunit/WebTest/Event/EventWaitListTest.php +++ b/tests/phpunit/WebTest/Event/EventWaitListTest.php @@ -33,7 +33,7 @@ class WebTest_Event_EventWaitListTest extends CiviSeleniumTestCase { parent::setUp(); } - function testEventWaitList() { + public function testEventWaitList() { // Log in using webtestLogin() method $this->webtestLogin(); @@ -159,7 +159,7 @@ class WebTest_Event_EventWaitListTest extends CiviSeleniumTestCase { * @param $eventTitle * @param $eventInfoStrings */ - function _testVerifyEventInfo($eventTitle, $eventInfoStrings) { + public function _testVerifyEventInfo($eventTitle, $eventInfoStrings) { // verify event input on info page // start at Manage Events listing $this->openCiviPage("event/manage", "reset=1"); @@ -174,7 +174,7 @@ class WebTest_Event_EventWaitListTest extends CiviSeleniumTestCase { * * @return string */ - function _testVerifyRegisterPage($registerStrings) { + public function _testVerifyRegisterPage($registerStrings) { // Go to Register page and check for intro text and fee levels $this->click("link=Register Now"); $this->waitForElementPresent("_qf_Register_upload-bottom"); @@ -187,7 +187,7 @@ class WebTest_Event_EventWaitListTest extends CiviSeleniumTestCase { * @param int $numberRegistrations * @param bool $anonymous */ - function _testOnlineRegistration($registerUrl, $numberRegistrations = 1, $anonymous = TRUE) { + public function _testOnlineRegistration($registerUrl, $numberRegistrations = 1, $anonymous = TRUE) { if ($anonymous) { $this->webtestLogout(); } @@ -241,4 +241,3 @@ class WebTest_Event_EventWaitListTest extends CiviSeleniumTestCase { } } } -