Lines Matching full:expect_false
19 EXPECT_FALSE(is_pointer<int>::value);
20 EXPECT_FALSE(is_pointer<int&>::value);
26 EXPECT_FALSE(is_array<int>::value);
27 EXPECT_FALSE(is_array<int*>::value);
28 EXPECT_FALSE(is_array<int(*)[3]>::value);
35 EXPECT_FALSE(is_non_const_reference<int>::value);
36 EXPECT_FALSE(is_non_const_reference<const int&>::value);
48 EXPECT_FALSE( (is_convertible<Parent, Child>::value) );
49 EXPECT_FALSE( (is_convertible<Parent, AStruct>::value) );
53 EXPECT_FALSE( (is_convertible<void*, int*>::value) );
60 EXPECT_FALSE(is_class<AnEnum>::value);
61 EXPECT_FALSE(is_class<int>::value);
62 EXPECT_FALSE(is_class<char*>::value);
63 EXPECT_FALSE(is_class<int&>::value);
64 EXPECT_FALSE(is_class<char[3]>::value);