public function testGetSell()
 {
     $account = Account::reference('ACCOUNT_ID');
     $expected = new Sell();
     $response = $this->getMock(ResponseInterface::class);
     $this->http->expects($this->any())->method('get')->with('/v2/accounts/ACCOUNT_ID/sells/SELL_ID', ['foo' => 'bar'])->willReturn($response);
     $this->mapper->expects($this->any())->method('toSell')->with($response)->willReturn($expected);
     $actual = $this->client->getAccountSell($account, 'SELL_ID', ['foo' => 'bar']);
     $this->assertSame($expected, $actual);
 }