Nelmio\Alice\Throwable\Exception\FixtureBuilder\Denormalizer\DenormalizerExceptionFactoryTest::testTestCreateForUndenormalizableConstructor PHP Method

testTestCreateForUndenormalizableConstructor() public method

    public function testTestCreateForUndenormalizableConstructor()
    {
        $exception = DenormalizerExceptionFactory::createForUndenormalizableConstructor();
        $this->assertEquals('Could not denormalize the given constructor.', $exception->getMessage());
        $this->assertEquals(0, $exception->getCode());
        $this->assertNull($exception->getPrevious());
    }