|
package testsuite
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"forge.cadoles.com/arcad/edge/pkg/storage"
|
|
)
|
|
|
|
func TestDocumentStore(ctx context.Context, t *testing.T, store storage.DocumentStore) {
|
|
t.Run("Ops", func(t *testing.T) {
|
|
testDocumentStoreOps(ctx, t, store)
|
|
})
|
|
}
|