Symfony\Component\DomCrawler\Tests\FormTest::testFormRegistrySetValueOnCompoundField PHP Method

testFormRegistrySetValueOnCompoundField() public method

    public function testFormRegistrySetValueOnCompoundField()
    {
        $registry = new FormFieldRegistry();
        $registry->add($this->getFormFieldMock('foo[bar][baz]'));

        $registry->set('foo[bar]', 'fbb');
    }