Home
last modified time | relevance | path

Searched refs:m_with_name (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc393 Matcher<AStruct> m_with_name = Field("x", &AStruct::x, Ge(0)); in TEST() local
397 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() local
410 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() local
670 EXPECT_TRUE(m_with_name.Matches(a)); in TEST()
674 EXPECT_FALSE(m_with_name.Matches(a)); in TEST()
[all …]