public function testCreateSell()
 {
     $sell = new Sell();
     $this->client->expects($this->once())->method('createAccountSell')->with($this->account, $sell, []);
     $this->account->createSell($sell);
 }