| 41 | } // namespace |
| 42 | |
| 43 | UNIT_TEST(StringNumericOptimal_Zero) |
| 44 | { |
| 45 | int t1 = 0; |
| 46 | TestStringCodingT(&t1, 1, 1); // should be coded as VarUint |
| 47 | |
| 48 | std::string t2 = "01"; |
| 49 | TestStringCodingT(&t2, 1, 3); // should be coded as String |
| 50 | } |
| 51 | |
| 52 | UNIT_TEST(StringNumericOptimal_IntCoding1) |
| 53 | { |
nothing calls this directly
no test coverage detected