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