15 lines
251 B
Go
15 lines
251 B
Go
|
package testsuite
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"forge.cadoles.com/arcad/edge/pkg/storage"
|
||
|
)
|
||
|
|
||
|
func TestDocumentStore(t *testing.T, store storage.DocumentStore) {
|
||
|
t.Run("Query", func(t *testing.T) {
|
||
|
// t.Parallel()
|
||
|
testDocumentStoreQuery(t, store)
|
||
|
})
|
||
|
}
|