PopTest\Cache\SqliteTest::testSetAndGetTable PHP 메소드

testSetAndGetTable() 공개 메소드

public testSetAndGetTable ( )
    public function testSetAndGetTable()
    {
        $c = Cache::factory(new Sqlite(__DIR__ . '/../tmp/cache.sqlite'), 30);
        $c->adapter()->setTable('pop_cache');
        $this->assertEquals('pop_cache', $c->adapter()->getTable());
    }