ApiPlatform\Core\Tests\Serializer\SerializerContextBuilderTest::testReuseExistingAttributes PHP Method

testReuseExistingAttributes() public method

    public function testReuseExistingAttributes()
    {
        $expected = ['bar' => 'baz', 'item_operation_name' => 'get', 'resource_class' => 'Foo', 'request_uri' => '', 'api_allow_update' => false];
        $this->assertEquals($expected, $this->builder->createFromRequest(new Request(), false, ['resource_class' => 'Foo', 'item_operation_name' => 'get']));
    }