(t *testing.T)
| 22 | } |
| 23 | |
| 24 | func TestStore_Default(t *testing.T) { |
| 25 | var a = assert.NewAssertion(t) |
| 26 | |
| 27 | store, err := kvstore.DefaultStore() |
| 28 | if err != nil { |
| 29 | t.Fatal(err) |
| 30 | } |
| 31 | a.IsTrue(store != nil) |
| 32 | } |
| 33 | |
| 34 | func TestStore_Default_Concurrent(t *testing.T) { |
| 35 | var lastStore *kvstore.Store |
nothing calls this directly
no test coverage detected