Lines Matching defs:ss3
101 stringstream ss3;
102 Cardinality::DescribeActualCallCountTo(3, &ss3);
103 EXPECT_EQ("called 3 times", ss3.str());
171 stringstream ss3;
172 AtLeast(3).DescribeTo(&ss3);
173 EXPECT_PRED_FORMAT2(IsSubstring, "at least 3 times", ss3.str());
224 stringstream ss3;
225 AtMost(3).DescribeTo(&ss3);
226 EXPECT_PRED_FORMAT2(IsSubstring, "called at most 3 times", ss3.str());
375 stringstream ss3;
376 Exactly(3).DescribeTo(&ss3);
377 EXPECT_PRED_FORMAT2(IsSubstring, "called 3 times", ss3.str());