public function SessionTest::testIsStarted in Zircon Profile 8
Same name in this branch
- 8 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::testIsStarted()
- 8 vendor/symfony/http-foundation/Tests/Session/SessionTest.php \Symfony\Component\HttpFoundation\Tests\Session\SessionTest::testIsStarted()
Same name and namespace in other branches
- 8.0 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::testIsStarted()
File
- vendor/
behat/ mink/ tests/ SessionTest.php, line 51
Class
Namespace
Behat\Mink\TestsCode
public function testIsStarted() {
$this->driver
->expects($this
->once())
->method('isStarted')
->will($this
->returnValue(true));
$this
->assertTrue($this->session
->isStarted());
}