Lines Matching refs:check_true
97 check_true(value.empty(), "empty"); in test_default_ctor()
197 check_true(original.empty(), "empty on original"); in test_swap()
223 check_true(null.empty(), "empty on null"); in test_null_copying()
224 check_true(copied.empty(), "empty on copied"); in test_null_copying()
225 check_true(assigned.empty(), "empty on copied"); in test_null_copying()
238 check_true( in test_cast_to_reference()
245 check_true(&rb_c == &rb_cv, "cv references to copied const obj"); in test_cast_to_reference()
246 check_true(&ra != &rb_c, "copies hold different objects"); in test_cast_to_reference()
250 check_true(incremented == 138, "increment by reference changes value"); in test_cast_to_reference()
331 check_true(value.empty(), "non-empty after clear"); in test_clear()
334 check_true(value.empty(), "non-empty after second clear"); in test_clear()
340 check_true(value.empty(), "non-empty after clear"); in test_clear()
393 …check_true(!!boost::any_cast<class_with_address_op<int> >(&test_val), "any_cast incorrectly works … in test_addressof()