Merge pull request #11010 from seamuslee001/CRM-21206
[civicrm-core.git] / tests / phpunit / CRM / Utils / MailTest.php
index 671b38d2cf35395a470317f031d2939199c71629..e9f77b6c538af8abce2c8ac0c5c212e49e3ea7ff 100644 (file)
@@ -1,8 +1,8 @@
 <?php
-require_once 'CiviTest/CiviUnitTestCase.php';
 
 /**
  * Class CRM_Utils_MailTest
+ * @group headless
  */
 class CRM_Utils_MailTest extends CiviUnitTestCase {
 
@@ -18,7 +18,7 @@ class CRM_Utils_MailTest extends CiviUnitTestCase {
 
     $values = array(
       array(
-    'name' => "Test User",
+        'name' => "Test User",
         'email' => "foo@bar.com",
         'result' => "Test User <foo@bar.com>",
       ),
@@ -58,4 +58,5 @@ class CRM_Utils_MailTest extends CiviUnitTestCase {
       $this->assertEquals($result, $value['result'], 'Expected encoding does not match');
     }
   }
+
 }