tests/phpunit/** - Remove unnecessary "require_once" statements
[civicrm-core.git] / tests / phpunit / CRM / Financial / BAO / FinancialTypeTest.php
index 7124a262775bd8bed893aabcd6267e5407d4b2da..4deaa447315cb970a49142ee0422b755c04a2963 100755 (executable)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -23,8 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
-require_once 'CiviTest/CiviUnitTestCase.php';
+ */
 
 /**
  * Class CRM_Financial_BAO_FinancialTypeTest
@@ -58,7 +57,7 @@ class CRM_Financial_BAO_FinancialTypeTest extends CiviUnitTestCase {
       'id',
       'Database check on added financial type record.'
     );
-    $this->assertEquals( $result, 'Donations', 'Verify Name for Financial Type');
+    $this->assertEquals($result, 'Donations', 'Verify Name for Financial Type');
   }
 
   /**
@@ -120,4 +119,5 @@ class CRM_Financial_BAO_FinancialTypeTest extends CiviUnitTestCase {
     $result = CRM_Financial_BAO_FinancialType::retrieve($params, $defaults);
     $this->assertEquals(empty($result), TRUE, 'Verify financial types record deletion.');
   }
+
 }