Lines Matching refs:testing
18 EXPECT_THAT(dst, testing::ElementsAre(1, 2));
24 EXPECT_THAT(dst, testing::ElementsAre(1, 2));
30 EXPECT_THAT(dst, testing::ElementsAre(5, 8, 15));
36 EXPECT_THAT(dst, testing::ElementsAre(5, 8, 15));
43 dst, testing::ElementsAre(int8_t{1}, int8_t{8}, int8_t{64}, int8_t{127}));
50 dst, testing::ElementsAre(1LL, 1024LL, 1048576LL, 1073741824LL,
58 EXPECT_THAT(dst, testing::ElementsAre(-8, -4, -2, -1, 0));
64 EXPECT_THAT(dst, testing::ElementsAre(-8, -4, -2, -1));
70 EXPECT_THAT(dst, testing::ElementsAre(-8, -4, -2, -1, 0, 1, 2, 4, 8));
76 EXPECT_THAT(dst, testing::ElementsAre(-30, -25, -5, -1, 0, 1, 5, 25, 32));
82 EXPECT_THAT(dst, testing::ElementsAre(-3, -2, -1, 0, 1, 2, 4, 5));
89 EXPECT_THAT(dst, testing::ElementsAre(-8, -1, 0, 1, 8));
95 EXPECT_THAT(dst, testing::ElementsAre(0));
101 EXPECT_THAT(dst, testing::ElementsAre(0, 1, 2));
107 EXPECT_THAT(dst, testing::ElementsAre(-4, -2, -1, 0, 1, 2, 4));
115 EXPECT_THAT(dst, testing::ElementsAre(1, 2, 3, -2, -1, 0, 1, 2));
124 dst, testing::ElementsAreArray(std::vector<int64_t>{
135 testing::ElementsAre(int8_t{1}, int8_t{2}, int8_t{4}, int8_t{8}));
146 testing::UnorderedElementsAre(testing::Pair("foo", "bar"),
147 testing::Pair("baz", "qux")));
161 testing::UnorderedElementsAre(testing::Pair("foo", "bar")));