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

testTestCreateDenormalizerNotFoundForFixture() public method

    public function testTestCreateDenormalizerNotFoundForFixture()
    {
        $exception = DenormalizerExceptionFactory::createDenormalizerNotFoundForFixture('foo');
        $this->assertEquals('No suitable fixture denormalizer found to handle the fixture with the reference "foo".', $exception->getMessage());
        $this->assertEquals(0, $exception->getCode());
        $this->assertNull($exception->getPrevious());
    }