testCredsBundle wraps a test call creds and real transport creds.
| 146 | |
| 147 | // testCredsBundle wraps a test call creds and real transport creds. |
| 148 | type testCredsBundle struct { |
| 149 | transportCreds credentials.TransportCredentials |
| 150 | callCreds credentials.PerRPCCredentials |
| 151 | } |
| 152 | |
| 153 | func (f *testCredsBundle) TransportCredentials() credentials.TransportCredentials { |
| 154 | return f.transportCreds |
nothing calls this directly
no outgoing calls
no test coverage detected