add missing comments - tests directory
[civicrm-core.git] / tests / phpunit / WebTest / Import / ContributionTest.php
index bffc4b06b5b300a1acb457af3cbf89729e4d480e..253806bf3869c212ba805b5e69fb8e2b6f4a9a2c 100644 (file)
@@ -75,6 +75,9 @@ class WebTest_Import_ContributionTest extends ImportCiviSeleniumTestCase {
     $this->importCSVComponent('Contribution', $headers, $rows, 'Household', 'Insert new contributions', $fieldMapper);
   }
 
+  /**
+   * @return array
+   */
   function _contributionIndividualCSVData() {
     $firstName1 = substr(sha1(rand()), 0, 7);
     $email1 = 'mail_' . substr(sha1(rand()), 0, 7) . '@example.com';
@@ -112,6 +115,9 @@ class WebTest_Import_ContributionTest extends ImportCiviSeleniumTestCase {
     return array($headers, $rows);
   }
 
+  /**
+   * @return array
+   */
   function _contributionHouseholdCSVData() {
     $household1 = substr(sha1(rand()), 0, 7) . ' home';
     $this->webtestAddHousehold($household1, TRUE);
@@ -147,6 +153,9 @@ class WebTest_Import_ContributionTest extends ImportCiviSeleniumTestCase {
     return array($headers, $rows);
   }
 
+  /**
+   * @return array
+   */
   function _contributionOrganizationCSVData() {
     $organization1 = substr(sha1(rand()), 0, 7) . ' org';
     $this->webtestAddOrganization($organization1, TRUE);