public function testGetSell()
 {
     $expected = new Sell();
     $this->client->expects($this->any())->method('getAccountSell')->with($this->account, 'ID', [])->willReturn($expected);
     $actual = $this->account->getSell('ID');
     $this->assertSame($expected, $actual);
 }