forked from boost-ext/ut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunner.cpp
43 lines (37 loc) · 953 Bytes
/
runner.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// Copyright (c) 2019-2020 Kris Jusiak (kris at jusiak dot net)
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
#include <boost/ut.hpp>
#include <stdexcept>
namespace ut = boost::ut;
namespace cfg {
class runner {
public:
template <class... Ts>
auto on(ut::events::test<Ts...> test) {
test();
}
template <class... Ts>
auto on(ut::events::skip<Ts...>) {}
template <class TExpr>
auto on(ut::events::assertion<TExpr>) -> bool {
return true;
}
auto on(ut::events::fatal_assertion) {}
template <class TMsg>
auto on(ut::events::log<TMsg>) {}
};
} // namespace cfg
template <>
auto ut::cfg<ut::override> = cfg::runner{};
int main() {
using namespace ut;
"should be ignored"_test = [] {
expect(throws([] { throw std::runtime_error{"exception!"}; }));
expect(1_i == 2) << "doesn't fire";
};
}