Ejemplo n.º 1
0
 /**
  * Tests that it is possible to unset the email pattern and make use of filter_var() instead.
  *
  * @return void
  *
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage Invalid email: "*****@*****.**"
  */
 public function testUnsetEmailPattern()
 {
     $email = new Email();
     $this->assertSame(Email::EMAIL_PATTERN, $email->emailPattern());
     $email->emailPattern(null);
     $this->assertNull($email->emailPattern());
     $email->to('*****@*****.**');
     $email->to('*****@*****.**');
 }