Go to the source code of this file.
#define BOOST_TEST_MODULE (eventprincipal_t) |
BOOST_AUTO_TEST_CASE |
( |
failgetbyIdTest |
| ) |
|
Definition at line 190 of file EventPrincipal_t.cc.
193 auto const&
h = pEvent_->getByProductID(invalid);
194 BOOST_TEST(
h.failed());
static constexpr ProductID invalid() noexcept
BOOST_AUTO_TEST_CASE |
( |
failgetbySelectorTest |
| ) |
|
Definition at line 197 of file EventPrincipal_t.cc.
201 auto const& wrapped = art::WrappedTypeID::make<art::ProductID>();
204 auto const&
h = pEvent_->getBySelector(
206 BOOST_TEST(
h.failed());
auto const invalid_module_context
BOOST_AUTO_TEST_CASE |
( |
failgetbyLabelTest |
| ) |
|
Definition at line 209 of file EventPrincipal_t.cc.
213 auto const& wrapped = art::WrappedTypeID::make<art::ProductID>();
217 auto const&
h = pEvent_->getByLabel(
219 BOOST_TEST(
h.failed());
auto const invalid_module_context
BOOST_AUTO_TEST_CASE |
( |
failgetManyTest |
| ) |
|
Definition at line 222 of file EventPrincipal_t.cc.
226 auto const& wrapped = art::WrappedTypeID::make<art::ProductID>();
229 auto const& query_results = pEvent_->getMany(
231 BOOST_TEST(query_results.empty());
auto const invalid_module_context
BOOST_AUTO_TEST_CASE |
( |
failgetManybyTypeTest |
| ) |
|
Definition at line 234 of file EventPrincipal_t.cc.
238 auto const& wrapped = art::WrappedTypeID::make<art::ProductID>();
246 BOOST_TEST(query_results.empty());
auto const invalid_module_context
auto const invalid_module_context = ModuleContext::invalid() |