Home | History | Annotate | Download | only in tests

Lines Matching refs:reporter

18 DEF_TEST(RefDict, reporter) {
22 REPORTER_ASSERT(reporter, NULL == dict.find(NULL));
23 REPORTER_ASSERT(reporter, NULL == dict.find("foo"));
24 REPORTER_ASSERT(reporter, NULL == dict.find("bar"));
27 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
28 REPORTER_ASSERT(reporter, 2 == data0.getRefCnt());
31 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
32 REPORTER_ASSERT(reporter, 2 == data0.getRefCnt());
35 REPORTER_ASSERT(reporter, &data1 == dict.find("foo"));
36 REPORTER_ASSERT(reporter, 1 == data0.getRefCnt());
37 REPORTER_ASSERT(reporter, 2 == data1.getRefCnt());
40 REPORTER_ASSERT(reporter, NULL == dict.find("foo"));
41 REPORTER_ASSERT(reporter, 1 == data0.getRefCnt());
42 REPORTER_ASSERT(reporter, 1 == data1.getRefCnt());
46 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
47 REPORTER_ASSERT(reporter, &data1 == dict.find("bar"));
48 REPORTER_ASSERT(reporter, 2 == data0.getRefCnt());
49 REPORTER_ASSERT(reporter, 2 == data1.getRefCnt());
52 REPORTER_ASSERT(reporter, &data1 == dict.find("foo"));
53 REPORTER_ASSERT(reporter, &data1 == dict.find("bar"));
54 REPORTER_ASSERT(reporter, 1 == data0.getRefCnt());
55 REPORTER_ASSERT(reporter, 3 == data1.getRefCnt());
58 REPORTER_ASSERT(reporter, NULL == dict.find("foo"));
59 REPORTER_ASSERT(reporter, NULL == dict.find("bar"));
60 REPORTER_ASSERT(reporter, 1 == data0.getRefCnt());
61 REPORTER_ASSERT(reporter, 1 == data1.getRefCnt());
65 REPORTER_ASSERT(reporter, NULL == d.find("foo"));
66 REPORTER_ASSERT(reporter, 1 == data0.getRefCnt());
68 REPORTER_ASSERT(reporter, &data0 == d.find("foo"));
69 REPORTER_ASSERT(reporter, 2 == data0.getRefCnt());
73 REPORTER_ASSERT(reporter, 1 == data0.getRefCnt());