// -*- c++ -*-// Distributed under the BSD 2-Clause License.// See accompanying file LICENSE for details.#pragma once#include<list>#include<memory>classTask;classSettings;intrunUnitTests(std::list<std::shared_ptr<Task>>& tasks,
const Settings& settings);