You are here

public function DocumentElementTest::testAttachFileToField 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::testAttachFileToField()

File

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

Class

DocumentElementTest

Namespace

Behat\Mink\Tests\Element

Code

public function testAttachFileToField() {
  $node = $this
    ->getMockBuilder('Behat\\Mink\\Element\\NodeElement')
    ->disableOriginalConstructor()
    ->getMock();
  $node
    ->expects($this
    ->once())
    ->method('attachFile')
    ->with('/path/to/file');
  $this
    ->mockNamedFinder('//field', array(
    $node,
  ), array(
    'field',
    'some field',
  ));
  $this->document
    ->attachFileToField('some field', '/path/to/file');
  $this
    ->setExpectedException('Behat\\Mink\\Exception\\ElementNotFoundException');
  $this->document
    ->attachFileToField('some field', '/path/to/file');
}