Merge branch 'master' into master-civimail-abtest
[civicrm-core.git] / tests / phpunit / api / v3 / DashboardTest.php
index c85fe680c5ac6ab1eab19fda8d5092d8149232a9..245de3b46aa4fe967b372c7746985ed2de4348a4 100644 (file)
@@ -37,8 +37,6 @@ class api_v3_DashboardTest extends CiviUnitTestCase {
   protected $_entity = 'dashboard';
   protected $_apiversion = 3;
 
-  public $_eNoticeCompliant = TRUE;
-
   /**
    *  Test setup for every test
    *
@@ -80,6 +78,10 @@ class api_v3_DashboardTest extends CiviUnitTestCase {
     $this->DashboardDelete($dashboard['id'], $oldCount);
   }
 
+  /**
+   * @param int $id
+   * @param $oldCount
+   */
   function DashboardDelete($id, $oldCount) {
     $params = array(
       'version' => 3,
@@ -91,4 +93,4 @@ class api_v3_DashboardTest extends CiviUnitTestCase {
     $newCount = CRM_Core_DAO::singleValueQuery('select count(*) from civicrm_dashboard');
     $this->assertEquals($oldCount, $newCount);
   }
-}
\ No newline at end of file
+}