Home | History | Annotate | Download | only in tests

Lines Matching refs:REPORTER_ASSERT

22     REPORTER_ASSERT(reporter, nullptr == dict.find(nullptr));
23 REPORTER_ASSERT(reporter, nullptr == dict.find("foo"));
24 REPORTER_ASSERT(reporter, nullptr == dict.find("bar"));
27 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
28 REPORTER_ASSERT(reporter, !data0.unique());
31 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
32 REPORTER_ASSERT(reporter, !data0.unique());
35 REPORTER_ASSERT(reporter, &data1 == dict.find("foo"));
36 REPORTER_ASSERT(reporter, data0.unique());
37 REPORTER_ASSERT(reporter, !data1.unique());
40 REPORTER_ASSERT(reporter, nullptr == dict.find("foo"));
41 REPORTER_ASSERT(reporter, data0.unique());
42 REPORTER_ASSERT(reporter, data1.unique());
46 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
47 REPORTER_ASSERT(reporter, &data1 == dict.find("bar"));
48 REPORTER_ASSERT(reporter, !data0.unique());
49 REPORTER_ASSERT(reporter, !data1.unique());
52 REPORTER_ASSERT(reporter, &data1 == dict.find("foo"));
53 REPORTER_ASSERT(reporter, &data1 == dict.find("bar"));
54 REPORTER_ASSERT(reporter, data0.unique());
55 REPORTER_ASSERT(reporter, !data1.unique());
58 REPORTER_ASSERT(reporter, nullptr == dict.find("foo"));
59 REPORTER_ASSERT(reporter, nullptr == dict.find("bar"));
60 REPORTER_ASSERT(reporter, data0.unique());
61 REPORTER_ASSERT(reporter, data1.unique());
65 REPORTER_ASSERT(reporter, nullptr == d.find("foo"));
66 REPORTER_ASSERT(reporter, data0.unique());
68 REPORTER_ASSERT(reporter, &data0 == d.find("foo"));
69 REPORTER_ASSERT(reporter, !data0.unique());
73 REPORTER_ASSERT(reporter, data0.unique());