public function SessionTest::testClear

@dataProvider setProvider

File

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

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

public function testClear($key, $value) {
  $this->session
    ->set('hi', 'fabien');
  $this->session
    ->set($key, $value);
  $this->session
    ->clear();
  $this
    ->assertEquals(array(), $this->session
    ->all());
}