193353312

This commit is contained in:
Gennadiy Civil
2018-04-18 10:36:12 -04:00
parent 80d6e26a9c
commit 4707c0ffd4
2 changed files with 16 additions and 4 deletions

View File

@@ -2751,6 +2751,15 @@ TEST(ElementsAreTest, HugeMatcher) {
Eq(8), Eq(9), Eq(10), Gt(1), Eq(12)));
}
// Tests the variadic version of the UnorderedElementsAreMatcher
TEST(ElementsAreTest, HugeMatcherStr) {
vector<string> test_vector{
"literal_string", "", "", "", "", "", "", "", "", "", "", ""};
EXPECT_THAT(test_vector, UnorderedElementsAre("literal_string", _, _, _, _, _,
_, _, _, _, _, _));
}
// Tests the variadic version of the UnorderedElementsAreMatcher
TEST(ElementsAreTest, HugeMatcherUnordered) {
vector<int> test_vector{2, 1, 8, 5, 4, 6, 7, 3, 9, 12, 11, 10};