public function testGetBuy()
 {
     $expected = new Buy();
     $this->client->expects($this->any())->method('getAccountBuy')->with($this->account, 'ID', [])->willReturn($expected);
     $actual = $this->account->getBuy('ID');
     $this->assertSame($expected, $actual);
 }