Phalcon\Test\Mvc\Model\Behavior\Helper::truncateTable PHP Method

truncateTable() protected method

protected truncateTable ( $table )
    protected function truncateTable($table)
    {
        $this->getDbPdo()->query("TRUNCATE TABLE `{$table}`")->execute();
        $this->getDbPdo()->query("ALTER TABLE `{$table}` AUTO_INCREMENT = 1")->execute();
        $this->tester->seeNumRecords(0, $table);
    }