Merge pull request #5596 from pratikshad/webtest2
[civicrm-core.git] / tests / phpunit / CiviTest / Custom.php
index 699efaa87623db4ccf1ab53ddadaeb1bf7b6eb8a..73076f7a5d916d9e210cdee28df54d7505393221 100644 (file)
@@ -5,7 +5,7 @@
  */
 class Custom extends CiviUnitTestCase {
   /**
-   * Helper function to create Custom Group
+   * Helper function to create Custom Group.
    *
    * @deprecated - use functions on test case parent class
    *
@@ -60,7 +60,7 @@ class Custom extends CiviUnitTestCase {
   }
 
   /**
-   * Helper function to create Custom Field
+   * Helper function to create Custom Field.
    * @deprecated use parent object create fn
    * @param array $params
    * @param null $fields
@@ -99,25 +99,29 @@ class Custom extends CiviUnitTestCase {
   }
 
   /**
-   * Helper function to delete custom field
+   * Helper function to delete custom field.
+   *
    * @deprecated use function on parent class
-   * @param object of Custom Field to delete
+   *
+   * @param $params
    */
   public static function deleteField($params) {
-    require_once 'CRM/Core/BAO/CustomField.php';
     CRM_Core_BAO_CustomField::deleteField($params);
   }
 
   /**
-   * Helper function to delete custom group
+   * Helper function to delete custom group.
+   *
    * @deprecated use function on parent class
-   * @param object Custom Group to delete
-   * @return boolean
+   *
+   * @param $params
+   *
+   * @return bool
    *   true if Group deleted, false otherwise
    */
   public static function deleteGroup($params) {
-    require_once 'CRM/Core/BAO/CustomGroup.php';
     $deleteCustomGroup = CRM_Core_BAO_CustomGroup::deleteGroup($params, TRUE);
     return $deleteCustomGroup;
   }
+
 }