1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00
Files
go-chasquid-smtp/internal/normalize/fuzz.go
2018-03-30 22:35:08 +01:00

16 lines
187 B
Go

// Fuzz testing for package normalize.
// +build gofuzz
package normalize
func Fuzz(data []byte) int {
s := string(data)
User(s)
Domain(s)
Addr(s)
DomainToUnicode(s)
return 0
}