mirror of
https://github.com/minimaxir/big-list-of-naughty-strings.git
synced 2025-09-30 15:49:12 +02:00
14 lines
238 B
Go
14 lines
238 B
Go
package naughtystrings
|
|
|
|
import "testing"
|
|
|
|
func TestNaughtyStrings(t *testing.T) {
|
|
for _, test := range [][]string{Base64Encoded(), Unencoded()} {
|
|
t.Logf("Test: %v", test)
|
|
|
|
if n := len(test); n == 0 {
|
|
t.Error("Length: 0")
|
|
}
|
|
}
|
|
}
|