Lines Matching refs:container
132 vector<int> container;
133 EXPECT_THAT(container, IsEmpty());
134 container.push_back(0);
135 EXPECT_THAT(container, Not(IsEmpty()));
136 container.push_back(1);
137 EXPECT_THAT(container, Not(IsEmpty()));
157 vector<int> container;
158 EXPECT_EQ("", Explain(m, container));
159 container.push_back(0);
160 EXPECT_EQ("whose size is 1", Explain(m, container));
206 // Tests ContainerEq with different container types, and
217 // Tests that the filled container is equal to itself.
270 // Depending on the container, match may be true or false