| 526 | } |
| 527 | |
| 528 | void concurrencpp::tests::test_task_call_operator_test_2() { |
| 529 | task t([] { |
| 530 | throw std::logic_error("example"); |
| 531 | }); |
| 532 | |
| 533 | assert_throws<std::logic_error>(t); |
| 534 | } |
| 535 | |
| 536 | void concurrencpp::tests::test_task_call_operator_test_3() { |
| 537 | bool a = false, b = false, c = false; |
nothing calls this directly
no outgoing calls
no test coverage detected