MCPcopy Create free account
hub / github.com/antmachineintelligence/mtgbmcode / BOOST_AUTO_TEST_CASE

Function BOOST_AUTO_TEST_CASE

compute/test/test_wait_list.cpp:29–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27namespace compute = boost::compute;
28
29BOOST_AUTO_TEST_CASE(create_wait_list)
30{
31 compute::wait_list events;
32 BOOST_CHECK_EQUAL(events.size(), size_t(0));
33 BOOST_CHECK_EQUAL(events.empty(), true);
34 BOOST_CHECK(events.get_event_ptr() == 0);
35}
36
37#ifndef BOOST_COMPUTE_NO_HDR_INITIALIZER_LIST
38BOOST_AUTO_TEST_CASE(create_wait_list_from_initializer_list)

Callers

nothing calls this directly

Calls 11

copy_asyncFunction · 0.85
get_event_ptrMethod · 0.80
CHECK_RANGE_EQUALFunction · 0.70
fillFunction · 0.50
sizeMethod · 0.45
emptyMethod · 0.45
beginMethod · 0.45
endMethod · 0.45
insertMethod · 0.45
waitMethod · 0.45
clearMethod · 0.45

Tested by

no test coverage detected