You are here

public function PdoSessionHandlerTest::testCreateTableTwice in Zircon Profile 8.0

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

@expectedException \RuntimeException

File

vendor/symfony/http-foundation/Tests/Session/Storage/Handler/PdoSessionHandlerTest.php, line 78

Class

PdoSessionHandlerTest

Namespace

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

Code

public function testCreateTableTwice() {
  $storage = new PdoSessionHandler($this
    ->getMemorySqlitePdo());
  $storage
    ->createTable();
}