CRM_Utils_RuleTest - Autoformat
authorTim Otten <totten@civicrm.org>
Sat, 21 Jun 2014 03:50:02 +0000 (20:50 -0700)
committerTim Otten <totten@civicrm.org>
Sat, 21 Jun 2014 03:50:21 +0000 (20:50 -0700)
tests/phpunit/CRM/Utils/RuleTest.php

index 2649183e368d1c0825b3b96fc8e1ff76ba90702c..6fcde9f836e078510055372fb3b93f5d039a05d3 100644 (file)
@@ -12,9 +12,9 @@ class CRM_Utils_RuleTest extends CiviUnitTestCase {
    */
   function get_info() {
     return array(
-      'name'      => 'Rule Test',
+      'name' => 'Rule Test',
       'description' => 'Test the validation rules',
-      'group'      => 'CiviCRM BAO Tests',
+      'group' => 'CiviCRM BAO Tests',
     );
   }
 
@@ -34,12 +34,12 @@ class CRM_Utils_RuleTest extends CiviUnitTestCase {
    */
   function integerDataProvider() {
     return array(
-      array(10, true),
-      array('145E+3', false),
-      array('10', true),
-      array(-10, true),
-      array('-10', true),
-      array('-10foo', false),
+      array(10, TRUE),
+      array('145E+3', FALSE),
+      array('10', TRUE),
+      array(-10, TRUE),
+      array('-10', TRUE),
+      array('-10foo', FALSE),
     );
   }
 
@@ -55,12 +55,12 @@ class CRM_Utils_RuleTest extends CiviUnitTestCase {
    */
   function positiveDataProvider() {
     return array(
-      array(10, true),
-      array('145.0E+3', false),
-      array('10', true),
-      array(-10, false),
-      array('-10', false),
-      array('-10foo', false),
+      array(10, TRUE),
+      array('145.0E+3', FALSE),
+      array('10', TRUE),
+      array(-10, FALSE),
+      array('-10', FALSE),
+      array('-10foo', FALSE),
     );
   }
 
@@ -76,14 +76,13 @@ class CRM_Utils_RuleTest extends CiviUnitTestCase {
    */
   function numericDataProvider() {
     return array(
-      array(10, true),
-      array('145.0E+3', false),
-      array('10', true),
-      array(-10, true),
-      array('-10', true),
-      array('-10foo', false),
+      array(10, TRUE),
+      array('145.0E+3', FALSE),
+      array('10', TRUE),
+      array(-10, TRUE),
+      array('-10', TRUE),
+      array('-10foo', FALSE),
     );
   }
 
-
 }