You are here

protected function SQLite3Test::setUp in Plug 7

File

lib/doctrine/cache/tests/Doctrine/Tests/Common/Cache/SQLite3CacheTest.php, line 16

Class

SQLite3Test

Namespace

Doctrine\Tests\Common\Cache

Code

protected function setUp() {
  $this->file = tempnam(null, 'doctrine-cache-test-');
  unlink($this->file);
  $this->sqlite = new SQLite3($this->file);
}