Lines Matching refs:CHECK_MESSAGE

50CHECK_MESSAGE((values.size() == 3), std::string("Descendant of the node must receive 3 messages.")…
53CHECK_MESSAGE((value.cast_to<int>() == 6), "Value passed is the actual one received.");
55CHECK_MESSAGE((value.cast_to<float>() == 1.5), "Value passed is the actual one received.");
57CHECK_MESSAGE((value.cast_to<input_msg>() == 1), "Value passed is the actual one received.");
67CHECK_MESSAGE((std::is_base_of<oneapi::tbb::flow::graph_node, my_indexer_type>::value), "indexer_n…
85CHECK_MESSAGE((testing_node.try_get(tmp) == false), "Value should be discarded after rejection");
106 CHECK_MESSAGE((v.is_a<int>()), "Expected to int" ); in __anon3412adbc0402()
107CHECK_MESSAGE((oneapi::tbb::flow::cast_to<int>(v) == 6), "Expected to receive 6" ); in __anon3412adbc0402()
109 CHECK_MESSAGE((v.is_a<float>()), "Expected to float" ); in __anon3412adbc0402()
110CHECK_MESSAGE((oneapi::tbb::flow::cast_to<float>(v) == 1.5), "Expected to receive 1.5" ); in __anon3412adbc0402()
112 CHECK_MESSAGE((v.is_a<input_msg>()), "Expected to float" ); in __anon3412adbc0402()
113CHECK_MESSAGE((oneapi::tbb::flow::cast_to<input_msg>(v) == 5), "Expected to receive input_msg(5)" … in __anon3412adbc0402()
151CHECK_MESSAGE((conformance::get_values(node2).size() == 0 && conformance::get_values(node3).size()…
156CHECK_MESSAGE((conformance::get_values(node2).size() == 1 && conformance::get_values(node3).size()…
162CHECK_MESSAGE((conformance::check_output_type<my_output_type, oneapi::tbb::flow::tagged_msg<size_t…