ApiPlatform\Core\Tests\Util\ErrorFormatGuesserTest::testFallback PHP Method

testFallback() public method

public testFallback ( )
    public function testFallback()
    {
        $format = ErrorFormatGuesser::guessErrorFormat(new Request(), ['xml' => ['text/xml'], 'jsonld' => ['application/ld+json', 'application/json']]);
        $this->assertEquals('xml', $format['key']);
        $this->assertEquals('text/xml', $format['value'][0]);
    }