You are here

public function SessionTest::testMaximizeWindow in Zircon Profile 8

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

File

vendor/behat/mink/tests/SessionTest.php, line 304

Class

SessionTest

Namespace

Behat\Mink\Tests

Code

public function testMaximizeWindow() {
  $this->driver
    ->expects($this
    ->once())
    ->method('maximizeWindow')
    ->with('test');
  $this->session
    ->maximizeWindow('test');
}