public function SessionTest::testResizeWindow in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::testResizeWindow()
File
- vendor/
behat/ mink/ tests/ SessionTest.php, line 295
Class
Namespace
Behat\Mink\TestsCode
public function testResizeWindow() {
$this->driver
->expects($this
->once())
->method('resizeWindow')
->with(800, 600, 'test');
$this->session
->resizeWindow(800, 600, 'test');
}