2023-02-09 12:16:36 +01:00
|
|
|
package testsuite
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"forge.cadoles.com/arcad/edge/pkg/storage"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDocumentStore(t *testing.T, store storage.DocumentStore) {
|
2023-02-17 22:26:12 +01:00
|
|
|
t.Run("Ops", func(t *testing.T) {
|
2023-04-06 14:45:50 +02:00
|
|
|
t.Parallel()
|
2023-02-17 22:26:12 +01:00
|
|
|
testDocumentStoreOps(t, store)
|
2023-02-09 12:16:36 +01:00
|
|
|
})
|
|
|
|
}
|