Searched refs:m_with_name (Results 1 – 1 of 1) sorted by relevance
393 Matcher<AStruct> m_with_name = Field("x", &AStruct::x, Ge(0)); in TEST() local397 EXPECT_TRUE(m_with_name.Matches(a)); in TEST()400 EXPECT_FALSE(m_with_name.Matches(a)); in TEST()408 Matcher<AStruct> m_with_name = Field("y", &AStruct::y, Ge(0.0)); in TEST() local410 EXPECT_TRUE(m_with_name.Matches(a)); in TEST()412 m_with_name = Field("y", &AStruct::y, Le(0.0)); in TEST()414 EXPECT_FALSE(m_with_name.Matches(a)); in TEST()665 Matcher<const AClass&> m_with_name = Property("n", &AClass::n, Ge(0)); in TEST() local670 EXPECT_TRUE(m_with_name.Matches(a)); in TEST()674 EXPECT_FALSE(m_with_name.Matches(a)); in TEST()[all …]