Explorar el Código

Added unit test for InternalKey::DecodeFrom with empty string.

PiperOrigin-RevId: 247483339
main
Chris Mumford hace 5 años
padre
commit
85cd40d108
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. +6
    -0
      db/dbformat_test.cc

+ 6
- 0
db/dbformat_test.cc Ver fichero

@ -65,6 +65,12 @@ TEST(FormatTest, InternalKey_EncodeDecode) {
}
}
TEST(FormatTest, InternalKey_DecodeFromEmpty) {
InternalKey internal_key;
ASSERT_TRUE(!internal_key.DecodeFrom(""));
}
TEST(FormatTest, InternalKeyShortSeparator) {
// When user keys are same
ASSERT_EQ(IKey("foo", 100, kTypeValue),

Cargando…
Cancelar
Guardar