protected function SessionHandlerProxyTest::setUp

File

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

Class

SessionHandlerProxyTest
Tests for SessionHandlerProxy class.

Namespace

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

Code

protected function setUp() {
  $this->mock = $this
    ->getMock('SessionHandlerInterface');
  $this->proxy = new SessionHandlerProxy($this->mock);
}