Searched refs:ElementsAreArray (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc63 using testing::ElementsAreArray;
575 // Tests for ElementsAreArray(). Since ElementsAreArray() shares most
583 EXPECT_THAT(test_vector, ElementsAreArray(a));
586 EXPECT_THAT(test_vector, Not(ElementsAreArray(a)));
593 EXPECT_THAT(test_vector, ElementsAreArray(a, GTEST_ARRAY_SIZE_(a)));
597 EXPECT_THAT(test_vector, Not(ElementsAreArray(p, GTEST_ARRAY_SIZE_(a))));
604 EXPECT_THAT(test_vector, ElementsAreArray(a));
607 EXPECT_THAT(test_vector, Not(ElementsAreArray(a)));
618 EXPECT_THAT(test_vector, ElementsAreArray(kMatcherArra
[all...]
H A Dgmock_link_test.h88 // ElementsAreArray
138 using testing::ElementsAreArray;
587 // Tests the linkage of the ElementsAreArray matcher.
592 ON_CALL(mock, VoidFromVector(ElementsAreArray(arr))).WillByDefault(Return());
H A Dgmock-matchers_test.cc4398 ElementsAreArray(sorted_numbers)));
4657 // Tests using ElementsAre() and ElementsAreArray() with stream-like
4677 EXPECT_THAT(s, ElementsAreArray(expected));
4680 EXPECT_THAT(s, Not(ElementsAreArray(expected)));
4697 EXPECT_THAT(actual, ElementsAreArray(expected));
4700 EXPECT_THAT(actual, Not(ElementsAreArray(expected)));
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3106 // Implements ElementsAre() and ElementsAreArray().
3343 // Implements unordered ElementsAre and unordered ElementsAreArray.
3523 // Implements ElementsAreArray().
3628 // ElementsAreArray(first, last)
3629 // ElementsAreArray(pointer, count)
3630 // ElementsAreArray(array)
3631 // ElementsAreArray(container)
3632 // ElementsAreArray({ e1, e2, ..., en })
3634 // The ElementsAreArray() functions are like ElementsAre(...), except
3641 // All forms of ElementsAreArray() mak
3646 ElementsAreArray(Iter first, Iter last) { function in namespace:testing
3652 inline internal::ElementsAreArrayMatcher<T> ElementsAreArray( function in namespace:testing
3665 ElementsAreArray(const Container& container) { function in namespace:testing
3672 ElementsAreArray(::std::initializer_list<T> xs) { function in namespace:testing
[all...]

Completed in 49 milliseconds