// -*- 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);