예제 #1
0
파일: UserTest.php 프로젝트: ymnl007/Usher
 public function test_can_set_email()
 {
     $this->entity->setEmail(new Email('*****@*****.**'));
     $this->assertInstanceOf('Maatwebsite\\Usher\\Domain\\Users\\Embeddables\\Email', $this->entity->getEmail());
     $this->assertEquals('*****@*****.**', (string) $this->entity->getEmail());
 }