public function MongoDbSessionHandlerTest::testWrite

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php, line 62

Class

MongoDbSessionHandlerTest
@author Markus Bachmann <markus.bachmann@bachi.biz>

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler

Code

public function testWrite() {
  $this
    ->assertTrue($this->storage
    ->write('foo', 'bar'));
  $this
    ->assertEquals('bar', $this->storage
    ->read('foo'));
}