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());
    }