Merge pull request #4909 from pratikshad/broken-webtest
[civicrm-core.git] / tests / phpunit / WebTest / Generic / CheckDashboardTest.php
index c1badd9d70f6a0549dfb36dd0450ba9b80af7fc9..11f20144947d8587de2f4f03746d15ef6aee58b8 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -36,7 +36,7 @@ class WebTest_Generic_CheckDashboardTest extends CiviSeleniumTestCase {
     parent::setUp();
   }
 
-  function testCheckDashboardElements() {
+  public function testCheckDashboardElements() {
 
     $this->webtestLogin();
 
@@ -55,7 +55,7 @@ class WebTest_Generic_CheckDashboardTest extends CiviSeleniumTestCase {
    * @param $widgetEnabledSelector
    * @param $widgetTitle
    */
-  function _testAddDashboardElement($widgetConfigureID, $widgetEnabledSelector, $widgetTitle) {
+  public function _testAddDashboardElement($widgetConfigureID, $widgetEnabledSelector, $widgetTitle) {
     // Check if desired widget is already loaded on dashboard and remove it if it is so we can test adding it.
     // Because it tends to cause problems, all uses of sleep() must be justified in comments
     // Sleep should never be used for wait for anything to load from the server
@@ -101,7 +101,7 @@ class WebTest_Generic_CheckDashboardTest extends CiviSeleniumTestCase {
    * @param int $widgetConfigureID
    * @param $widgetEnabledSelector
    */
-  function _testRemoveDashboardElement($widgetConfigureID, $widgetEnabledSelector) {
+  public function _testRemoveDashboardElement($widgetConfigureID, $widgetEnabledSelector) {
     $this->click("link=Configure Your Dashboard");
     $this->waitForElementPresent("dashlets-header-col-0");
     $this->mouseDownAt("{$widgetConfigureID}", "");
@@ -129,7 +129,7 @@ class WebTest_Generic_CheckDashboardTest extends CiviSeleniumTestCase {
     $this->assertFalse($this->isElementPresent($widgetEnabledSelector));
   }
 
-  function _testActivityDashlet() {
+  public function _testActivityDashlet() {
     // Add an activity that will show up in the widget
     $this->WebtestAddActivity();
     $widgetTitle = "Activities";
@@ -168,4 +168,3 @@ class WebTest_Generic_CheckDashboardTest extends CiviSeleniumTestCase {
     $this->_testRemoveDashboardElement($widgetConfigureID, $widgetEnabledSelector);
   }
 }
-