isStarted() public method

Tells if the session has been started already.
public isStarted ( ) : boolean
return boolean
 /**
  * @test
  */
 public function isStartedReturnsFalseByDefault()
 {
     $session = new Session();
     $this->assertFalse($session->isStarted());
 }