Home | History | Annotate | Download | only in testing

Lines Matching refs:have

49   const map<string, int>* have = x->NamedCaptures();
50 EXPECT_TRUE(have != NULL);
51 EXPECT_EQ(2, have->size()); // there are only two named groups in
56 EXPECT_EQ(want, *have);
58 delete have;
68 const map<int, string>* have = x->CaptureNames();
69 EXPECT_TRUE(have != NULL);
70 EXPECT_EQ(3, have->size());
76 EXPECT_EQ(want, *have);
78 delete have;