public function SessionTest::testGetWindowName in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::testGetWindowName()
File
- vendor/
behat/ mink/ tests/ SessionTest.php, line 213
Class
Namespace
Behat\Mink\TestsCode
public function testGetWindowName() {
$this->driver
->expects($this
->once())
->method('getWindowName')
->will($this
->returnValue('name'));
$this
->assertEquals('name', $this->session
->getWindowName());
}