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