(t *testing.T)
| 33 | } |
| 34 | |
| 35 | func TestAddLowercaseComplementRange(t *testing.T) { |
| 36 | set := NotECMADigitClass() |
| 37 | set.addLowercase() |
| 38 | |
| 39 | if set.CharIn('1') { |
| 40 | t.Fatal("digit should remain excluded") |
| 41 | } |
| 42 | if !set.CharIn('t') { |
| 43 | t.Fatal("letter should remain included") |
| 44 | } |
| 45 | } |
nothing calls this directly
no test coverage detected