You are here

public function DocumentElementTest::testSelectField in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/behat/mink/tests/Element/DocumentElementTest.php \Behat\Mink\Tests\Element\DocumentElementTest::testSelectField()

File

vendor/behat/mink/tests/Element/DocumentElementTest.php, line 361

Class

DocumentElementTest

Namespace

Behat\Mink\Tests\Element

Code

public function testSelectField() {
  $node = $this
    ->getMockBuilder('Behat\\Mink\\Element\\NodeElement')
    ->disableOriginalConstructor()
    ->getMock();
  $node
    ->expects($this
    ->once())
    ->method('selectOption')
    ->with('option2');
  $this
    ->mockNamedFinder('//field', array(
    $node,
  ), array(
    'field',
    'some field',
  ));
  $this->document
    ->selectFieldOption('some field', 'option2');
  $this
    ->setExpectedException('Behat\\Mink\\Exception\\ElementNotFoundException');
  $this->document
    ->selectFieldOption('some field', 'option2');
}