blob: f0c96e0c44fd2cede3283f55eaf18112831631b9 [file] [log] [blame]
Brad Bishop18b228e2017-05-31 21:34:39 -04001#include "generated.hpp"
2
Patrick Venture3d6d3182018-08-31 09:33:09 -07003#include <gtest/gtest.h>
4
Brad Bishop18b228e2017-05-31 21:34:39 -04005using 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}