Visualphpunit\Core\Test::truncateTable PHP Method

truncateTable() public static method

Truncate the table
public static truncateTable ( Doctrine\DBAL\Connection $connection ) : boolean
$connection Doctrine\DBAL\Connection
return boolean
    public static function truncateTable(Connection $connection)
    {
        $sql = "DELETE FROM tests;";
        $stmt = $connection->prepare($sql);
        return $stmt->execute();
    }