15 lines
266 B
Go
15 lines
266 B
Go
|
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)
|
||
|
})
|
||
|
}
|