| 9 | namespace butil { |
| 10 | |
| 11 | TEST(NullableString16Test, DefaultConstructor) { |
| 12 | NullableString16 s; |
| 13 | EXPECT_TRUE(s.is_null()); |
| 14 | EXPECT_EQ(string16(), s.string()); |
| 15 | } |
| 16 | |
| 17 | TEST(NullableString16Test, Equals) { |
| 18 | NullableString16 a(ASCIIToUTF16("hello"), false); |
nothing calls this directly
no test coverage detected