Files
opencloud/services/userlog/pkg/service/service_suit_test.go
T
2025-01-16 09:45:46 +01:00

26 lines
520 B
Go

package service_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
mRegistry "go-micro.dev/v4/registry"
"github.com/opencloud-eu/opencloud/pkg/registry"
)
func init() {
r := registry.GetRegistry(registry.Inmemory())
service := registry.BuildGRPCService("eu.opencloud.api.gateway", "", "", "")
service.Nodes = []*mRegistry.Node{{
Address: "any",
}}
_ = r.Register(service)
}
func TestSearch(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Userlog service Suite")
}