private function createAccount()
 {
     $this->accounts[] = $account = new Account();
     $account->setName('test' . time());
     $this->client->createAccount($account);
     return $account;
 }
예제 #2
0
 public function testSetName()
 {
     $account = new Account();
     $account->setName('NAME');
     $this->assertEquals('NAME', $account->getName());
 }