summaryrefslogtreecommitdiff
path: root/src/unittest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/unittest.h')
-rw-r--r--src/unittest.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/unittest.h b/src/unittest.h
index 7eef0e2..2880319 100644
--- a/src/unittest.h
+++ b/src/unittest.h
@@ -3,11 +3,14 @@
// See accompanying file LICENSE for details.
#pragma once
-#include <list>
+#include <set>
#include <memory>
class Task;
-class Settings;
-int runUnitTests(std::list<std::shared_ptr<Task>>& tasks,
- const Settings& settings);
+namespace ctor {
+struct settings;
+} // namespace ctor::
+
+int runUnitTests(std::set<std::shared_ptr<Task>>& tasks,
+ const ctor::settings& settings);