bandwidthThrottle\tokenBucket\storage\PDOStorageTest::testRemoveTable PHP Метод

testRemoveTable() публичный Метод

Tests remove() removes the table after the last row.
public testRemoveTable ( PDO $pdo )
$pdo PDO The PDO.
    public function testRemoveTable(\PDO $pdo)
    {
        $storage = new PDOStorage("test", $pdo);
        $storage->bootstrap(0);
        $storage->remove();
        $this->assertFalse($storage->isBootstrapped());
    }