CRM-15855 - Allow mailings to be saved (but not sent) without name+subject.
[civicrm-core.git] / tests / phpunit / CiviTest / CiviCaseTestCase.php
index 41a76a38c9a923bed450e6fad8f9f362e5add35e..ce6f032591b16e7cddb8a8264265d8f719594769 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        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 require_once 'CiviTest/CiviUnitTestCase.php';
 
@@ -60,7 +60,7 @@ class CiviCaseTestCase extends CiviUnitTestCase {
     // state where tests could run afterwards without re-loading.
     $this->caseStatusGroup = $this->callAPISuccess('option_group', 'get', array(
         'name' => 'case_status',
-        'format.only_id' => 1
+        'format.only_id' => 1,
       )
     );
     $optionValues = array(
@@ -125,8 +125,6 @@ class CiviCaseTestCase extends CiviUnitTestCase {
   /**
    * Tears down the fixture, for example, closes a network connection.
    * This method is called after a test is executed.
-   *
-   * @access protected
    */
   public function tearDown() {
     $this->quickCleanup($this->tablesToTruncate, TRUE);
@@ -142,4 +140,5 @@ class CiviCaseTestCase extends CiviUnitTestCase {
    */
   public function hook_caseTypes(&$caseTypes) {
   }
-}
\ No newline at end of file
+
+}