Beispiel #1
0
 /** @test */
 public function should_test_equality()
 {
     $one = new Email('*****@*****.**');
     $two = new Email('*****@*****.**');
     $three = new Email('*****@*****.**');
     $this->assertTrue($one->equals($two));
     $this->assertFalse($one->equals($three));
 }