public function SessionTest::testGetCount

@covers \Symfony\Component\HttpFoundation\Session\Session::count

File

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

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

public function testGetCount() {
  $this->session
    ->set('hello', 'world');
  $this->session
    ->set('symfony2', 'rocks');
  $this
    ->assertEquals(2, count($this->session));
}