public function SessionTest::testAll

@dataProvider setProvider

File

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

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

public function testAll($key, $value, $result) {
  $this->session
    ->set($key, $value);
  $this
    ->assertEquals($result, $this->session
    ->all());
}