Merge pull request #5596 from pratikshad/webtest2
[civicrm-core.git] / tests / phpunit / CiviTest / Custom.php
index ad1d0edf8f59c81eaf3b90afdbc0ac14737a9f6b..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
    *
@@ -13,7 +13,8 @@ class Custom extends CiviUnitTestCase {
    * @param null $extends
    * @param bool $isMultiple
    *
-   * @return object of created group
+   * @return object
+   *   of created group
    */
   public static function createGroup($group, $extends = NULL, $isMultiple = FALSE) {
     if (empty($group)) {
@@ -59,12 +60,13 @@ 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
-   * @return object of created field
-*/
+   * @return object
+   *   of created field
+   */
   public static function createField($params, $fields = NULL) {
     if (empty($params)) {
       $params = array(
@@ -97,24 +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 true if Group deleted, false otherwise
+   *
+   * @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;
   }
+
 }