1 #pragma once
2 #include "system_queries.hpp"
3 
4 namespace phosphor::network::system
5 {
6 /** @brief Clears out the interfaces and IPs configured for mocking */
7 void mock_clear();
8 
9 /** @brief Adds an interface definition to the mock system */
10 void mock_addIF(const InterfaceInfo& info);
11 } // namespace phosphor::network::system
12