Lines Matching refs:_assert
21 #define _assert(...) T_ASSERT_TRUE((__VA_ARGS__), # __VA_ARGS__) macro
40 _assert(!(ptr == nullptr)); in tests()
41 _assert(!(nullptr == ptr)); in tests()
42 _assert(ptr != nullptr); in tests()
43 _assert(nullptr != ptr); in tests()
47 _assert(ptr == nullptr); in tests()
48 _assert(nullptr == ptr); in tests()
49 _assert(!(ptr != nullptr)); in tests()
50 _assert(!(nullptr != ptr)); in tests()
56 _assert(ptr == nullptr); in tests()
57 _assert(nullptr == ptr); in tests()
58 _assert(!(ptr != nullptr)); in tests()
59 _assert(!(nullptr != ptr)); in tests()