|
package testsuite
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forge.cadoles.com/cadoles/bouncer/internal/datastore"
|
|
)
|
|
|
|
func TestProxyRepository(t *testing.T, repo datastore.ProxyRepository) {
|
|
t.Run("Cases", func(t *testing.T) {
|
|
t.Parallel()
|
|
runProxyRepositoryTests(t, repo)
|
|
})
|
|
}
|