| 91 | |
| 92 | namespace concurrencpp::tests { |
| 93 | void assert_true(bool condition) { |
| 94 | if (!condition) { |
| 95 | std::cerr << "assertion failed. expected: [true] actual: [false]."; |
| 96 | std::abort(); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | void assert_false(bool condition) { |
| 101 | if (condition) { |
no outgoing calls