xref: /openbmc/phosphor-dbus-monitor/src/test/callbacktest.cpp (revision 3d6d3182ee0b0e88b81fbbbe5c91dea3e99425a9)
1 #include "generated.hpp"
2 
3 #include <gtest/gtest.h>
4 
5 using namespace phosphor::dbus::monitoring;
6 
TEST(JournalTest,Test)7 TEST(JournalTest, Test)
8 {
9     // No assertions here, but the least we can do
10     // make sure the program runs without crashing...
11     for (auto& c : ConfigPropertyCallbacks::get())
12     {
13         (*c)(Context::START);
14     }
15 }
16