Cleanup api generated example docblocks
[civicrm-core.git] / tests / phpunit / HelloTest.php
index a35dc0487bcaf5384456d0fd8b559f63895da0b4..30746e342dddd453984f1835f1b158fe0ac9f930 100644 (file)
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * @file HelloTest.php
@@ -54,7 +54,7 @@ class HelloTest extends PHPUnit_Framework_TestCase {
   }
 
   /**
-   * Called before the test functions will be executed
+   * Called before the test functions will be executed.
    * this function is defined in PHPUnit_TestCase and overwritten
    * here
    */
@@ -65,7 +65,7 @@ class HelloTest extends PHPUnit_Framework_TestCase {
   }
 
   /**
-   * Called after the test functions are executed
+   * Called after the test functions are executed.
    * this function is defined in PHPUnit_TestCase and overwritten
    * here.
    */
@@ -75,11 +75,12 @@ class HelloTest extends PHPUnit_Framework_TestCase {
   }
 
   /**
-   * test the toString function
+   * test the toString function.
    */
   public function testHello() {
     $result = $this->abc;
     $expected = 'hello';
     $this->assertEquals($result, $expected);
   }
+
 }