public function testGetDeposit()
 {
     $expected = new Deposit();
     $this->client->expects($this->any())->method('getAccountDeposit')->with($this->account, 'ID', [])->willReturn($expected);
     $actual = $this->account->getDeposit('ID');
     $this->assertSame($expected, $actual);
 }