mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-17 14:37:02 +00:00
16 lines
187 B
Go
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
|
|
}
|