public function SessionTest::testGet

File

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

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

public function testGet() {

  // tests defaults
  $this
    ->assertNull($this->session
    ->get('foo'));
  $this
    ->assertEquals(1, $this->session
    ->get('foo', 1));
}