public function testGetTransaction()
 {
     $expected = new Transaction();
     $this->client->expects($this->any())->method('getAccountTransaction')->with($this->account, 'ID', [])->willReturn($expected);
     $actual = $this->account->getTransaction('ID');
     $this->assertSame($expected, $actual);
 }