|
package testsuite
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/datastore"
|
|
)
|
|
|
|
func TestSpecDefinitionRepository(t *testing.T, repo datastore.SpecDefinitionRepository) {
|
|
t.Run("Cases", func(t *testing.T) {
|
|
t.Parallel()
|
|
runSpecDefinitionRepositoryTests(t, repo)
|
|
})
|
|
}
|