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