You are here

public function FormTest::testFormRegistrySetValueOnCompoundField in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dom-crawler/Tests/FormTest.php \Symfony\Component\DomCrawler\Tests\FormTest::testFormRegistrySetValueOnCompoundField()

@expectedException \InvalidArgumentException @expectedExceptionMessage Cannot set value on a compound field "foo[bar]".

File

vendor/symfony/dom-crawler/Tests/FormTest.php, line 814

Class

FormTest

Namespace

Symfony\Component\DomCrawler\Tests

Code

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