HomeSort by relevance Sort by last modified time
    Searched refs:ElementsAre (Results 1 - 9 of 9) sorted by null

  /external/chromium/testing/gmock/test/
gmock-generated-matchers_test.cc 62 using testing::ElementsAre;
284 // Tests for ElementsAre().
290 Matcher<const vector<int>&> m = ElementsAre();
295 Matcher<vector<int> > m = ElementsAre(Gt(5));
300 Matcher<list<string> > m = ElementsAre(StrEq("one"), "two");
307 Matcher<vector<int> > m = ElementsAre();
312 Matcher<const list<int>& > m = ElementsAre(Gt(5));
318 Matcher<const list<string>& > m = ElementsAre("one", "two");
325 Matcher<const list<int>& > m = ElementsAre(1, Ne(2));
335 ElementsAre(GreaterThan(1), 0, GreaterThan(2))
    [all...]
gmock_link_test.h 87 // ElementsAre
137 using testing::ElementsAre;
580 // Tests the linkage of the ElementsAre matcher.
584 ON_CALL(mock, VoidFromVector(ElementsAre('a', _))).WillByDefault(Return());
gmock-matchers_test.cc     [all...]
  /external/chromium/base/
string_split_unittest.cc 9 using ::testing::ElementsAre;
139 EXPECT_THAT(results, ElementsAre(""));
213 EXPECT_THAT(results, ElementsAre("alongwordwithnodelimiter"));
223 EXPECT_THAT(results, ElementsAre("", "", "", "one", "two", "three"));
233 EXPECT_THAT(results, ElementsAre("uno", "", "", "dos", "tres", "", "cuatro"));
244 results, ElementsAre("un", "deux", "trois", "quatre", "", "", ""));
string_util_unittest.cc 17 using ::testing::ElementsAre;
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-matchers.h 308 // Implements ElementsAre() of 1-10 arguments.
744 // ElementsAre(e0, e1, ..., e_n) matches an STL-style container with
747 // ElementsAre() can be either a value or a matcher. We support up to
750 // NOTE: Since ElementsAre() cares about the order of the elements, it
754 inline internal::ElementsAreMatcher0 ElementsAre() {
759 inline internal::ElementsAreMatcher1<T1> ElementsAre(const T1& e1) {
764 inline internal::ElementsAreMatcher2<T1, T2> ElementsAre(const T1& e1,
770 inline internal::ElementsAreMatcher3<T1, T2, T3> ElementsAre(const T1& e1,
776 inline internal::ElementsAreMatcher4<T1, T2, T3, T4> ElementsAre(const T1& e1,
783 T5> ElementsAre(const T1& e1, const T2& e2, const T3& e3, const T4& e4
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_autofill_unittest.cc 82 using testing::ElementsAre;
735 EXPECT_CALL(autofill_table_, UpdateAutofillEntries(ElementsAre(sync_entry))).
772 UpdateAutofillEntries(ElementsAre(merged_entry))).WillOnce(Return(true));
    [all...]
profile_sync_service_password_unittest.cc 67 using testing::ElementsAre;
  /external/ceres-solver/internal/ceres/gmock/
gmock.h     [all...]

Completed in 86 milliseconds