示例#1
0
    protected function tearDown()
    {
        $this->db->exec(<<<EOT
    DELETE FROM sqlite_sequence;
EOT
);
        parent::tearDown();
    }
示例#2
0
    protected function tearDown()
    {
        if ($this->db === null) {
            return;
        }
        $this->db->exec(<<<EOT
    DELETE FROM sqlite_sequence;
EOT
);
        parent::tearDown();
    }