INNER CODE UNIT · Go
TestStore
philippgille/gokv · badgerdb/badgerdb_test.go:16
func TestStore(t *testing.T) {
// Test with JSON
t.Run("JSON", func(t *testing.T) {
store, path := createStore(t, encoding.JSON)
defer cleanUp(store, path)
test.TestStore(store, t)
})
// Test with gob
t.Run("gob", func(t *testing.T) {
store, path := createStore(t, encoding.Gob)
defer cleanUp(store, path)
test.TestStore(store, t)
})
}
// TestTypes tests if setting and getting values works with all Go types.
func TestTypes(t *testing.T) {