| 20 | } |
| 21 | |
| 22 | TEST(EncodingRoundTrip, StringSimple) { |
| 23 | string my_str("I am the very model of a modern major general"); |
| 24 | test_encode_and_decode < std::string >(my_str); |
| 25 | } |
| 26 | |
| 27 | TEST(EncodingRoundTrip, StringEmpty) { |
| 28 | string my_str(""); |
nothing calls this directly
no test coverage detected