summaryrefslogtreecommitdiff
path: root/src/unittest.h
blob: 7eef0e28a8456450fc03fdb64bd225c1e4166719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once

#include <list>
#include <memory>

class Task;
class Settings;

int runUnitTests(std::list<std::shared_ptr<Task>>& tasks,
                 const Settings& settings);