| 47 | } |
| 48 | |
| 49 | bool static TestSplitHost(string test, string host, int port) |
| 50 | { |
| 51 | string hostOut; |
| 52 | int portOut = -1; |
| 53 | SplitHostPort(test, portOut, hostOut); |
| 54 | return hostOut == host && port == portOut; |
| 55 | } |
| 56 | |
| 57 | BOOST_AUTO_TEST_CASE(netbase_splithost) |
| 58 | { |
no test coverage detected