...
1load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "integration_test",
5 srcs = [
6 "client_test.go",
7 "integration_test.go",
8 "main_test.go",
9 ],
10 deps = [
11 "//examples/internal/clients/abe",
12 "//examples/internal/clients/echo",
13 "//examples/internal/clients/unannotatedecho",
14 "//examples/internal/gateway",
15 "//examples/internal/proto/examplepb",
16 "//examples/internal/proto/pathenum",
17 "//examples/internal/proto/sub",
18 "//examples/internal/server",
19 "//runtime",
20 "@com_github_google_go_cmp//cmp",
21 "@com_github_rogpeppe_fastuuid//:fastuuid",
22 "@org_golang_google_genproto_googleapis_rpc//status",
23 "@org_golang_google_grpc//codes",
24 "@org_golang_google_grpc//grpclog",
25 "@org_golang_google_protobuf//encoding/protojson",
26 "@org_golang_google_protobuf//proto",
27 "@org_golang_google_protobuf//testing/protocmp",
28 "@org_golang_google_protobuf//types/known/emptypb",
29 "@org_golang_google_protobuf//types/known/fieldmaskpb",
30 "@org_golang_google_protobuf//types/known/structpb",
31 ],
32)
View as plain text