Lines Matching refs:t_empty
62 t_empty; in global() local
72 CPPUNIT_ASSERT_MESSAGE("ctor1", ! t_empty.is()); in global()
90 CPPUNIT_ASSERT_MESSAGE("bool1", ! t_empty); in global()
104 t_empty = hp; in global()
105 CPPUNIT_ASSERT_MESSAGE("assign1", t_empty.is() ); in global()
108 t1 = t_empty.release(); in global()
110 CPPUNIT_ASSERT_MESSAGE("assign4", ! t_empty.is() ); in global()
117 t_empty.reset(hp); in global()
119 CPPUNIT_ASSERT_MESSAGE("reset2", t_empty.is() ); in global()
120 CPPUNIT_ASSERT_MESSAGE("reset3", t_empty.get() == hp ); in global()
123 t_empty = hp; in global()
125 CPPUNIT_ASSERT_MESSAGE("selfassign2", t_empty.is() ); in global()
126 CPPUNIT_ASSERT_MESSAGE("selfassign3", t_empty.get() == hp ); in global()
128 t_empty.reset(0); in global()
131 CPPUNIT_ASSERT_MESSAGE("reset4", ! t_empty.is() ); in global()