Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
EmailAddressTest.php
Go to the documentation of this file.
1 <?php
9 
11 
12 class EmailAddressTest extends \PHPUnit\Framework\TestCase
13 {
17  public function testDefaultValidateIgnoresTLD()
18  {
20  $emailAddress = new EmailAddress();
21  $this->assertTrue($emailAddress->isValid("[email protected]"));
22  }
23 
27  public function testCanValidateTLD()
28  {
30  $emailAddress = new EmailAddress();
31  $emailAddress->setValidateTld(true);
32  $this->assertFalse($emailAddress->isValid("[email protected]"));
33  }
34 }