NOLINTNEXTLINE
| 23 | |
| 24 | // NOLINTNEXTLINE |
| 25 | TEST(Base64Encode, EncodesEmpty) |
| 26 | { |
| 27 | std::string const expected{}; |
| 28 | std::string const actual{endstone::core::base64_encode({})}; |
| 29 | ASSERT_EQ(expected, actual); |
| 30 | } |
| 31 | |
| 32 | // NOLINTNEXTLINE |
| 33 | TEST(Base64Encode, EncodesThreeBytesZeros) |
nothing calls this directly
no test coverage detected