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