Home | History | Annotate | Download | only in test

Lines Matching defs:fields

55 string JoinAsTuple(const Strings& fields);
1222 // If both fields match, Pair() should explain about them both.
1223 EXPECT_EQ("whose both fields match, where the first field is a value "
1231 EXPECT_EQ("whose both fields match, where the first field is a value "
1238 EXPECT_EQ("whose both fields match, where the second field is a value "
1246 // Both fields match.
3737 const char* fields[] = { "1" };
3738 EXPECT_EQ("1", JoinAsTuple(Strings(fields, fields + 1)));
3742 const char* fields[] = { "1", "a" };
3743 EXPECT_EQ("(1, a)", JoinAsTuple(Strings(fields, fields + 2)));
3747 const char* fields[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10" };
3749 JoinAsTuple(Strings(fields, fields + 10)));