(t *testing.T)
| 93 | } |
| 94 | |
| 95 | func TestApplyHeadersGRPC_empty(t *testing.T) { |
| 96 | ctx := context.Background() |
| 97 | result := applyHeadersGRPC(ctx, []string{}) |
| 98 | _, ok := metadata.FromOutgoingContext(result) |
| 99 | require.False(t, ok) |
| 100 | } |
| 101 | |
| 102 | func TestParseTime(t *testing.T) { |
| 103 | now := time.Now() |
nothing calls this directly
no test coverage detected