summaryrefslogtreecommitdiff
path: root/src/unittest.h
blob: 51186899df8a658618a156206a2804cfc3463531 (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 <set>
#include <memory>

class Task;
struct Settings;

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