blob: 1ea90dd97018a0c0ff7664436caf4325b5193bb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once
#include <set>
#include <memory>
class Task;
namespace ctor {
struct Settings;
} // namespace ctor::
int runUnitTests(std::set<std::shared_ptr<Task>>& tasks,
const ctor::Settings& settings);
|