Nelmio\Alice\Throwable\Exception\Generator\Resolver\UniqueValueGenerationLimitReachedExceptionFactoryTest::testTestCreateNewExceptionWithFactory PHP Method

testTestCreateNewExceptionWithFactory() public method

    public function testTestCreateNewExceptionWithFactory()
    {
        $exception = UniqueValueGenerationLimitReachedExceptionFactory::create(new UniqueValue('unique_id', new \stdClass()), 10);
        $this->assertEquals('Could not generate a unique value after 10 attempts for "unique_id".', $exception->getMessage());
        $this->assertEquals(0, $exception->getCode());
        $this->assertNull($exception->getPrevious());
    }
UniqueValueGenerationLimitReachedExceptionFactoryTest