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