Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-08-04-22-25-32
[civicrm-core.git] / tests / phpunit / CRM / Core / DAO / AllCoreTablesTest.php
index ecff916268b8d5458390c3b9c28b5d29e5dcb718..325a35c465600dafb9f824b3c640b085f6f7122a 100644 (file)
@@ -1,9 +1,13 @@
 <?php
 
 require_once 'CiviTest/CiviUnitTestCase.php';
+
+/**
+ * Class CRM_Core_DAO_AllCoreTablesTest
+ */
 class CRM_Core_DAO_AllCoreTablesTest extends CiviUnitTestCase {
   public function testGetTableForClass() {
     $this->assertEquals('civicrm_email', CRM_Core_DAO_AllCoreTables::getTableForClass('CRM_Core_DAO_Email'));
     $this->assertEquals('civicrm_email', CRM_Core_DAO_AllCoreTables::getTableForClass('CRM_Core_BAO_Email'));
   }
-}
\ No newline at end of file
+}