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