// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once

#include <vector>
#include <memory>

class Task;

namespace ctor {
struct settings;
} // namespace ctor::

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