Lines Matching refs:CHECK_MESSAGE
50 …CHECK_MESSAGE((values.size() == 3), std::string("Descendant of the node must receive 3 messages.")…
53 … CHECK_MESSAGE((value.cast_to<int>() == 6), "Value passed is the actual one received.");
55 … CHECK_MESSAGE((value.cast_to<float>() == 1.5), "Value passed is the actual one received.");
57 … CHECK_MESSAGE((value.cast_to<input_msg>() == 1), "Value passed is the actual one received.");
67 …CHECK_MESSAGE((std::is_base_of<oneapi::tbb::flow::graph_node, my_indexer_type>::value), "indexer_n…
85 … CHECK_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()
107 … CHECK_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()
110 … CHECK_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()
113 …CHECK_MESSAGE((oneapi::tbb::flow::cast_to<input_msg>(v) == 5), "Expected to receive input_msg(5)" … in __anon3412adbc0402()
151 …CHECK_MESSAGE((conformance::get_values(node2).size() == 0 && conformance::get_values(node3).size()…
156 …CHECK_MESSAGE((conformance::get_values(node2).size() == 1 && conformance::get_values(node3).size()…
162 …CHECK_MESSAGE((conformance::check_output_type<my_output_type, oneapi::tbb::flow::tagged_msg<size_t…