----------------------------------------------------------------------------- Send a number of test messages to a node and record results. -----------------------------------------------------------------------------
| 4097 | // Send a number of test messages to a node and record results. |
| 4098 | //----------------------------------------------------------------------------- |
| 4099 | void Manager::TestNetworkNode |
| 4100 | ( |
| 4101 | uint32 const _homeId, |
| 4102 | uint8 const _nodeId, |
| 4103 | uint32 const _count |
| 4104 | ) |
| 4105 | { |
| 4106 | if( Driver* driver = GetDriver( _homeId ) ) |
| 4107 | { |
| 4108 | driver->TestNetwork( _nodeId, _count ); |
| 4109 | } |
| 4110 | } |
| 4111 | |
| 4112 | //----------------------------------------------------------------------------- |
| 4113 | // <Manager::TestNetwork> |
nothing calls this directly
no test coverage detected