public function SessionHandlerProxyTest::testDestroy

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/Proxy/SessionHandlerProxyTest.php, line 111

Class

SessionHandlerProxyTest
Tests for SessionHandlerProxy class.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy

Code

public function testDestroy() {
  $this->mock
    ->expects($this
    ->once())
    ->method('destroy');
  $this->proxy
    ->destroy('id');
}