| 114 | } |
| 115 | |
| 116 | void concurrencpp::tests::test_runtime_version() { |
| 117 | auto version = concurrencpp::runtime::version(); |
| 118 | assert_equal(std::get<0>(version), concurrencpp::details::consts::k_concurrencpp_version_major); |
| 119 | assert_equal(std::get<1>(version), concurrencpp::details::consts::k_concurrencpp_version_minor); |
| 120 | assert_equal(std::get<2>(version), concurrencpp::details::consts::k_concurrencpp_version_revision); |
| 121 | } |
| 122 | |
| 123 | using namespace concurrencpp::tests; |
| 124 |
nothing calls this directly
no test coverage detected