public function testSetPrimaryAccount()
 {
     $this->accounts[] = $this->client->getPrimaryAccount();
     $account = $this->createAccount();
     $this->client->setPrimaryAccount($account);
     $this->assertTrue($account->isPrimary());
 }
 public function testGetAccountTransactions()
 {
     $account = $this->client->getPrimaryAccount();
     $transactions = $this->client->getAccountTransactions($account);
 }