public function SessionTest::testAll in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/Session/SessionTest.php \Symfony\Component\HttpFoundation\Tests\Session\SessionTest::testAll()
@dataProvider setProvider
File
- vendor/
symfony/ http-foundation/ Tests/ Session/ SessionTest.php, line 117
Class
- SessionTest
- SessionTest.
Namespace
Symfony\Component\HttpFoundation\Tests\SessionCode
public function testAll($key, $value, $result) {
$this->session
->set($key, $value);
$this
->assertEquals($result, $this->session
->all());
}