public function SessionTest::testIsStarted

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/SessionTest.php, line 57

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

public function testIsStarted() {
  $this
    ->assertFalse($this->session
    ->isStarted());
  $this->session
    ->start();
  $this
    ->assertTrue($this->session
    ->isStarted());
}