(t *testing.T)
| 110 | } |
| 111 | |
| 112 | func (s) TestLocalCredsLocalhost(t *testing.T) { |
| 113 | if err := testLocalCredsE2ESucceed(t, "tcp", "localhost:0"); err != nil { |
| 114 | t.Fatalf("Failed e2e test for localhost: %v", err) |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | func (s) TestLocalCredsUDS(t *testing.T) { |
| 119 | addr := fmt.Sprintf("/tmp/grpc_fullstck_test%d", time.Now().UnixNano()) |
nothing calls this directly
no test coverage detected