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

testDelete() 공개 메소드

public testDelete ( )
    public function testDelete()
    {
        $c = Cache::factory(new Sqlite(__DIR__ . '/../tmp/cache.sqlite'), 30);
        $c->adapter()->delete();
        $this->assertFalse(file_exists(__DIR__ . '/../tmp/cache.sqlite'));
    }