///////////////////////////////////////////////////////////////////// TestHexToString -- locale specific test -- only works in Unicode //////////////////////////////////////////////////////////////////////
| 156 | // TestHexToString -- locale specific test -- only works in Unicode |
| 157 | /////////////////////////////////////////////////////////////////////////// |
| 158 | void test_hex_to_string(const std::string& str, const std::string& expected) |
| 159 | { |
| 160 | std::string observed = cCharEncoderUtil::HexValueToCharString(str); |
| 161 | TEST(expected == observed); |
| 162 | } |
| 163 | |
| 164 | void TestHexToString() |
| 165 | { |