예제 #1
0
 public function testAccountFactoryReturnsAccountWithMatchingIdentity()
 {
     $identity = $this->test_email;
     $acc = AccountFactory::findByIdentity($identity);
     $this->assertEquals($identity, $acc->getIdentity());
 }