public function testCreateBuy()
 {
     $buy = new Buy();
     $this->client->expects($this->once())->method('createAccountBuy')->with($this->account, $buy, []);
     $this->account->createBuy($buy);
 }