diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-09-14 07:46:43 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-09-14 07:46:43 +0200 |
commit | ba04d2889a4e017c6043bac9951f722e60b63bc5 (patch) | |
tree | 1267f9264dfe81aadeac46446ee6122a5abe5190 /src/unittest.h | |
parent | f7fda8ca8841552b54ce72ed8ca9156cc09368d0 (diff) |
Add suport for building and running unittests with the 'check' target.
Diffstat (limited to 'src/unittest.h')
-rw-r--r-- | src/unittest.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/unittest.h b/src/unittest.h new file mode 100644 index 0000000..144dbdb --- /dev/null +++ b/src/unittest.h @@ -0,0 +1,10 @@ +#pragma once + +#include <list> +#include <memory> + +class Task; +class Settings; + +int runUnitTests(std::list<std::shared_ptr<Task>>& tasks, + const Settings& settings); |