Example #1
0
 /** @test */
 function it_can_access_the_required_attributes()
 {
     $customer = new Customer();
     $customer->setFullName('John', 'Doe')->setEmail('*****@*****.**');
     $this->assertEquals('John', $customer->getGivenName());
     $this->assertEquals('Doe', $customer->getFamilyName());
     $this->assertEquals('*****@*****.**', $customer->getEmail());
 }