aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/test/gmock-matchers_test.cc
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-04-17 16:12:04 -0400
committerGennadiy Civil <misterg@google.com>2018-04-17 16:12:04 -0400
commitdff32aff97a682dfc603ac99bedc639b959e24a8 (patch)
tree4fad9320db485a823cd41f13f484b8edb7fce185 /googlemock/test/gmock-matchers_test.cc
parent3f88bb1831e48029e52fefcf654bfab5cf3a952c (diff)
downloadgoogletest-dff32aff97a682dfc603ac99bedc639b959e24a8.tar.gz
googletest-dff32aff97a682dfc603ac99bedc639b959e24a8.tar.bz2
googletest-dff32aff97a682dfc603ac99bedc639b959e24a8.zip
http://cl/193060888
Diffstat (limited to 'googlemock/test/gmock-matchers_test.cc')
-rw-r--r--googlemock/test/gmock-matchers_test.cc42
1 files changed, 42 insertions, 0 deletions
diff --git a/googlemock/test/gmock-matchers_test.cc b/googlemock/test/gmock-matchers_test.cc
index 16116b5c..c2738c37 100644
--- a/googlemock/test/gmock-matchers_test.cc
+++ b/googlemock/test/gmock-matchers_test.cc
@@ -2742,6 +2742,48 @@ TEST(AnyOfTest, VariadicMatchesWhenAnyMatches) {
41, 42, 43, 44, 45, 46, 47, 48, 49, 50));
}
+// Tests the variadic version of the ElementsAreMatcher
+TEST(ElementsAreTest, HugeMatcher) {
+ vector<int> test_vector;
+ test_vector.push_back(1);
+ test_vector.push_back(2);
+ test_vector.push_back(3);
+ test_vector.push_back(4);
+ test_vector.push_back(5);
+ test_vector.push_back(6);
+ test_vector.push_back(7);
+ test_vector.push_back(8);
+ test_vector.push_back(9);
+ test_vector.push_back(10);
+ test_vector.push_back(11);
+ test_vector.push_back(12);
+
+ EXPECT_THAT(test_vector,
+ ElementsAre(Eq(1), Eq(2), Lt(13), Eq(4), Eq(5), Eq(6), Eq(7),
+ Eq(8), Eq(9), Eq(10), Gt(1), Eq(12) ));
+}
+
+// Tests the variadic version of the UnorderedElementsAreMatcher
+TEST(ElementsAreTest, HugeMatcherUnordered) {
+ vector<int> test_vector;
+ test_vector.push_back(1);
+ test_vector.push_back(2);
+ test_vector.push_back(3);
+ test_vector.push_back(4);
+ test_vector.push_back(5);
+ test_vector.push_back(6);
+ test_vector.push_back(7);
+ test_vector.push_back(8);
+ test_vector.push_back(9);
+ test_vector.push_back(10);
+ test_vector.push_back(11);
+ test_vector.push_back(12);
+
+ EXPECT_THAT(test_vector,
+ UnorderedElementsAre(Eq(1), Eq(2), Eq(3), Eq(4), Eq(5), Eq(6), Eq(7),
+ Eq(8), Eq(9), Eq(10), Eq(11), Ne(122) ));
+}
+
#endif // GTEST_LANG_CXX11
// Tests that AnyOf(m1, ..., mn) describes itself properly.