/**
  * @covers ::getUrl
  * @covers ::__construct
  */
 public function testGetUrl()
 {
     $url = 'http://example.com/' . mt_rand();
     $sut = new OperationContinuationInstruction($url);
     $this->assertSame($url, $sut->getUrl());
 }