Lines Matching refs:CHECK
40 CHECK(tracking_policy::releases == 1); in tests()
41 CHECK(tracking_policy::retains == 1); in tests()
42 CHECK(&ref == &to); in tests()
43 CHECK(from.get() == &obj1); in tests()
44 CHECK(to.get() == &obj1); in tests()
53 CHECK(tracking_policy::releases == 0); in tests()
54 CHECK(tracking_policy::retains == 1); in tests()
55 CHECK(&ref == &to); in tests()
56 CHECK(from.get() == &obj1); in tests()
57 CHECK(to.get() == &obj1); in tests()
66 CHECK(tracking_policy::releases == 1); in tests()
67 CHECK(tracking_policy::retains == 0); in tests()
68 CHECK(&ref == &to); in tests()
69 CHECK(from.get() == nullptr); in tests()
70 CHECK(to.get() == nullptr); in tests()
79 CHECK(tracking_policy::releases == 0); in tests()
80 CHECK(tracking_policy::retains == 0); in tests()
81 CHECK(&ref == &to); in tests()
82 CHECK(from.get() == nullptr); in tests()
83 CHECK(to.get() == nullptr); in tests()