/**
  * @covers ::setEnd
  * @covers ::getEnd
  */
 public function testGetEnd()
 {
     $end = 'foo' . mt_rand();
     $this->assertSame($this->sut, $this->sut->setEnd($end));
     $this->assertSame($end, $this->sut->getEnd());
 }