Lines Matching defs:actual
1557 const int actual[] = {3, 1, 2};
1562 EXPECT_THAT(actual, IsSupersetOf(expected));
1565 EXPECT_THAT(actual, Not(IsSupersetOf(expected)));
1647 const int actual[] = {1, 1};
1648 EXPECT_THAT(actual, Not(IsSubsetOf(not_enough)));
1649 EXPECT_THAT(actual, IsSubsetOf(enough));
1683 const int actual[] = {3, 1, 2};
1688 EXPECT_THAT(actual, Not(IsSubsetOf(expected)));
1692 EXPECT_THAT(actual, IsSubsetOf(expected));
1804 const int actual[] = {3, 1, 2};
1810 EXPECT_THAT(actual, ElementsAreArray(expected));
1813 EXPECT_THAT(actual, Not(ElementsAreArray(expected)));
1832 std::vector<bool> actual(std::begin(b), std::end(b));
1834 EXPECT_TRUE(ExplainMatchResult(UnorderedElementsAreArray(expected), actual,
1859 const int actual[] = {3, 1, 2};
1865 EXPECT_THAT(actual, UnorderedElementsAreArray(expected));
1868 EXPECT_THAT(actual, Not(UnorderedElementsAreArray(expected)));