You are here

public function MemcachedSessionHandlerTest::testDestroySession in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MemcachedSessionHandlerTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler\MemcachedSessionHandlerTest::testDestroySession()

File

vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MemcachedSessionHandlerTest.php, line 84

Class

MemcachedSessionHandlerTest

Namespace

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

Code

public function testDestroySession() {
  $this->memcached
    ->expects($this
    ->once())
    ->method('delete')
    ->with(self::PREFIX . 'id')
    ->will($this
    ->returnValue(true));
  $this
    ->assertTrue($this->storage
    ->destroy('id'));
}