(t *testing.T)
| 42 | } |
| 43 | |
| 44 | func TestRot13Encrypt(t *testing.T) { |
| 45 | for _, test := range rot13TestData { |
| 46 | t.Run(test.description, func(t *testing.T) { |
| 47 | input := test.input |
| 48 | expected := test.expected |
| 49 | assertRot13Output(t, input, expected) |
| 50 | }) |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | func TestRot13Decrypt(t *testing.T) { |
| 55 | for _, test := range rot13TestData { |
nothing calls this directly
no test coverage detected