blob: 28803197bef31dbcc02ce5e6a5cc5f57c6cc124a (
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);
|