public function MemcacheSessionHandlerTest::testCloseSession

File

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

Class

MemcacheSessionHandlerTest

Namespace

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

Code

public function testCloseSession() {
  $this->memcache
    ->expects($this
    ->once())
    ->method('close')
    ->will($this
    ->returnValue(true));
  $this
    ->assertTrue($this->storage
    ->close());
}