Home | History | Annotate | Download | only in test

Lines Matching refs:Ne

105 using testing::Ne;
860 // Tests that Ne(v) matches anything != v.
862 Matcher<int> m1 = Ne(0);
868 // Tests that Ne(v) describes itself properly.
870 Matcher<int> m = Ne(5);
1878 // Tests that Ne() matches a 2-tuple where the first field != the
1881 Matcher<const Tuple2&> m = Ne();
1887 // Tests that Ne() describes itself properly.
1889 Matcher<const Tuple2&> m = Ne();
1937 m = AllOf(Gt(0), Ne(1), Ne(2));
1943 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
1950 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
1959 AllOfMatches(2, AllOf(Ne(1), Ne(2)));
1960 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3)));
1961 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4)));
1962 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5)));
1963 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6)));
1964 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7)));
1965 AllOfMatches(8, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7),
1966 Ne(8)));
1967 AllOfMatches(9, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7),
1968 Ne(8), Ne(9)));
1969 AllOfMatches(10, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8),
1970 Ne(9), Ne(10)));
1979 m = AllOf(Gt(0), Ne(1), Ne(2));
1986 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
1994 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2011 m = AllOf(Gt(0), Ne(1), Ne(2));
2018 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
2026 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));