public function testGetClaimCheckFactory()
 {
     self::assertInstanceOf(ClaimCheckFactoryInterface::class, $this->sut->getClaimCheckFactory());
     $this->sut->setClaimCheckFactory($expected = new ClaimCheckFactory('AnotherBucket'));
     self::assertSame($expected, $this->sut->getClaimCheckFactory());
 }