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