(item string)
| 23 | |
| 24 | func (s StringSet) Has(item string) bool { _, ok := s[item]; return ok } |
| 25 | func (s StringSet) Insert(item string) { s[item] = struct{}{} } |
| 26 | |
| 27 | func TestCertificateCommonName(t *testing.T) { |
| 28 | zero := Certificate{} |
no outgoing calls
no test coverage detected