22 lines
426 B
Go
22 lines
426 B
Go
package service
|
|
|
|
import (
|
|
"testing"
|
|
|
|
httpcli "go.unistack.org/micro-client-http/v3"
|
|
httpsrv "go.unistack.org/micro-server-http/v3"
|
|
"go.unistack.org/micro/v3"
|
|
"go.unistack.org/micro/v3/server"
|
|
)
|
|
|
|
func TestHTTPService(t *testing.T) {
|
|
svc := micro.NewService(
|
|
micro.Server(httpsrv.NewServer(server.Address("127.0.0.1:0"))),
|
|
micro.Client(httpcli.NewClient()),
|
|
)
|
|
|
|
if err := svc.Init(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|