(t *testing.T, input, expected string)
| 62 | } |
| 63 | |
| 64 | func assertRot13Output(t *testing.T, input, expected string) { |
| 65 | actual := rot13(input) |
| 66 | if actual != expected { |
| 67 | t.Fatalf("With input string %q was expecting %q but actual was %q", |
| 68 | input, expected, actual) |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | func FuzzRot13(f *testing.F) { |
| 73 | for _, rot13TestInput := range rot13TestData { |
no test coverage detected