public function SessionTest::testIsStarted in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::testIsStarted()
- 8.0 vendor/symfony/http-foundation/Tests/Session/SessionTest.php \Symfony\Component\HttpFoundation\Tests\Session\SessionTest::testIsStarted()
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Tests/Session/SessionTest.php \Symfony\Component\HttpFoundation\Tests\Session\SessionTest::testIsStarted()
File
- vendor/
symfony/ http-foundation/ Tests/ Session/ SessionTest.php, line 57
Class
- SessionTest
- SessionTest.
Namespace
Symfony\Component\HttpFoundation\Tests\SessionCode
public function testIsStarted() {
$this
->assertFalse($this->session
->isStarted());
$this->session
->start();
$this
->assertTrue($this->session
->isStarted());
}