xref: /openbmc/phosphor-logging/test/remote_logging_test_port.cpp (revision f2131442a3dd9ccb44aad106aa6f4c14e3c051ba)
1 #include "remote_logging_tests.hpp"
2 
3 namespace phosphor
4 {
5 namespace logging
6 {
7 namespace test
8 {
9 
10 TEST_F(TestRemoteLogging, testGoodPort)
11 {
12     config->port(100);
13     EXPECT_EQ(config->port(), 100);
14 }
15 
16 } // namespace test
17 } // namespace logging
18 } // namespace phosphor
19