| 8 | #include <boost/ut.hpp> |
| 9 | |
| 10 | int main() { |
| 11 | using namespace boost::ut; |
| 12 | |
| 13 | // clang-format off |
| 14 | skip / |
| 15 | "don't run"_test = [] { |
| 16 | expect(42_i == 43) << "should not fire!"; |
| 17 | expect(false) << "should fail!"; |
| 18 | }; |
| 19 | |
| 20 | skip / test("don't run") = [] { |
| 21 | expect(42_i == 43) << "should not fire!"; |
| 22 | expect(false) << "should fail!"; |
| 23 | }; |
| 24 | // clang-format on |
| 25 | } |