summaryrefslogtreecommitdiff
path: root/src/unittest.h
blob: 8dee33cb9cb9e7a7ec90e8ff139fa087e3c549cd (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;
class Settings;

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