summaryrefslogtreecommitdiff
path: root/test/initial_event_tests/initial_event_test_service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/initial_event_tests/initial_event_test_service.cpp')
-rw-r--r--test/initial_event_tests/initial_event_test_service.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/initial_event_tests/initial_event_test_service.cpp b/test/initial_event_tests/initial_event_test_service.cpp
index 26a8e06..f02a493 100644
--- a/test/initial_event_tests/initial_event_test_service.cpp
+++ b/test/initial_event_tests/initial_event_test_service.cpp
@@ -27,7 +27,10 @@ public:
app_(vsomeip::runtime::get()->create_application()),
wait_until_registered_(true),
offer_thread_(std::bind(&initial_event_test_service::run, this)) {
- app_->init();
+ if (!app_->init()) {
+ VSOMEIP_ERROR << "Couldn't initialize application";
+ EXPECT_TRUE(false);
+ }
app_->register_state_handler(
std::bind(&initial_event_test_service::on_state, this,
std::placeholders::_1));