blob: 78736f8c54dbfa6ae9a3dae20147d394c96c2985 [file] [log] [blame]
Brad Bishop18b228e2017-05-31 21:34:39 -04001#include <gtest/gtest.h>
2
3#include "generated.hpp"
4
5using namespace phosphor::dbus::monitoring;
6
7TEST(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 {
Ratan Guptaa45e0862018-02-21 19:03:13 +053013 (*c)(Context::START);
Brad Bishop18b228e2017-05-31 21:34:39 -040014 }
15}