Lines Matching full:exceptions
34 std::vector<std::exception_ptr> exceptions = in TEST() local
36 EXPECT_EQ(exceptions.size(), 0); in TEST()
60 // Get vector containing exceptions in TEST()
61 std::vector<std::exception_ptr> exceptions = in TEST() local
63 EXPECT_EQ(exceptions.size(), 2); in TEST()
68 std::rethrow_exception(exceptions[0]); in TEST()
83 std::rethrow_exception(exceptions[1]); in TEST()
125 std::vector<std::exception_ptr> exceptions; in TEST() local
126 exception_utils::internal::getExceptions(eptr, exceptions); in TEST()
127 EXPECT_EQ(exceptions.size(), 0); in TEST()
143 // Build vector of exceptions in TEST()
144 std::vector<std::exception_ptr> exceptions; in TEST() local
145 exception_utils::internal::getExceptions(eptr, exceptions); in TEST()
146 EXPECT_EQ(exceptions.size(), 1); in TEST()
151 std::rethrow_exception(exceptions[0]); in TEST()
193 // Build vector of exceptions in TEST()
194 std::vector<std::exception_ptr> exceptions; in TEST() local
195 exception_utils::internal::getExceptions(eptr, exceptions); in TEST()
196 EXPECT_EQ(exceptions.size(), 3); in TEST()
201 std::rethrow_exception(exceptions[0]); in TEST()
216 std::rethrow_exception(exceptions[1]); in TEST()
231 std::rethrow_exception(exceptions[2]); in TEST()