diff options
author | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2013-07-30 06:16:21 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2013-07-30 06:16:21 +0000 |
commit | 5579c1a8b1591d4932495b8cb3cc61f3edca2555 (patch) | |
tree | 4d4fa50c41cecd0547b9b8b9fcdfe99275d95333 /test | |
parent | fb25d5391143a0fd4cbce862f19472ddc2a1ecab (diff) | |
download | googletest-5579c1a8b1591d4932495b8cb3cc61f3edca2555.tar.gz googletest-5579c1a8b1591d4932495b8cb3cc61f3edca2555.tar.bz2 googletest-5579c1a8b1591d4932495b8cb3cc61f3edca2555.zip |
Makes UnorderedElementsAre*() work with containers that don't have size() or empty().
Diffstat (limited to 'test')
-rw-r--r-- | test/gmock-matchers_test.cc | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/test/gmock-matchers_test.cc b/test/gmock-matchers_test.cc index 1c43ecb4..ae97c9e0 100644 --- a/test/gmock-matchers_test.cc +++ b/test/gmock-matchers_test.cc @@ -4430,7 +4430,7 @@ TEST(WhenSortedTest, WorksForStreamlike) { // Streamlike 'container' provides only minimal iterator support. // Its iterators are tagged with input_iterator_tag. const int a[5] = { 2, 1, 4, 5, 3 }; - Streamlike<int> s(a, a + 5); + Streamlike<int> s(a, a + GMOCK_ARRAY_SIZE_(a)); EXPECT_THAT(s, WhenSorted(ElementsAre(1, 2, 3, 4, 5))); EXPECT_THAT(s, Not(WhenSorted(ElementsAre(2, 1, 4, 5, 3)))); } @@ -4465,6 +4465,25 @@ TEST(UnorderedElementsAreArrayTest, VectorBool) { actual, &listener)) << listener.str(); } +TEST(UnorderedElementsAreArrayTest, WorksForStreamlike) { + // Streamlike 'container' provides only minimal iterator support. + // Its iterators are tagged with input_iterator_tag, and it has no + // size() or empty() methods. + const int a[5] = { 2, 1, 4, 5, 3 }; + Streamlike<int> s(a, a + GMOCK_ARRAY_SIZE_(a)); + + ::std::vector<int> expected; + expected.push_back(1); + expected.push_back(2); + expected.push_back(3); + expected.push_back(4); + expected.push_back(5); + EXPECT_THAT(s, UnorderedElementsAreArray(expected)); + + expected.push_back(6); + EXPECT_THAT(s, Not(UnorderedElementsAreArray(expected))); +} + class UnorderedElementsAreTest : public testing::Test { protected: typedef std::vector<int> IntVec; @@ -4493,6 +4512,17 @@ TEST_F(UnorderedElementsAreTest, FailsWhenAnElementMatchesNoMatcher) { s, &listener)) << listener.str(); } +TEST_F(UnorderedElementsAreTest, WorksForStreamlike) { + // Streamlike 'container' provides only minimal iterator support. + // Its iterators are tagged with input_iterator_tag, and it has no + // size() or empty() methods. + const int a[5] = { 2, 1, 4, 5, 3 }; + Streamlike<int> s(a, a + GMOCK_ARRAY_SIZE_(a)); + + EXPECT_THAT(s, UnorderedElementsAre(1, 2, 3, 4, 5)); + EXPECT_THAT(s, Not(UnorderedElementsAre(2, 2, 3, 4, 5))); +} + // One naive implementation of the matcher runs in O(N!) time, which is too // slow for many real-world inputs. This test shows that our matcher can match // 100 inputs very quickly (a few milliseconds). An O(100!) is 10^158 |