(t *testing.T)
| 64 | } |
| 65 | |
| 66 | func TestIsValidChallengeKey(t *testing.T) { |
| 67 | for _, tt := range isValidChallengeKeyTests { |
| 68 | ok := isValidChallengeKey(tt.key) |
| 69 | if ok != tt.ok { |
| 70 | t.Errorf("isValidChallengeKey returns %v, want %v", ok, tt.ok) |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | var parseExtensionTests = []struct { |
| 76 | value string |
nothing calls this directly
no test coverage detected