(t *testing.T)
| 105 | } |
| 106 | |
| 107 | func TestInput_PascalCaseNoRule(t *testing.T) { |
| 108 | str := New("pascal case this_complicated__string%%") |
| 109 | against := "PascalCaseThisComplicatedString%%" |
| 110 | if val := str.PascalCase().Get(); val != against { |
| 111 | t.Errorf("Expected: to be %s but got: %s", "PascalCaseThisComplicatedString", val) |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | func TestInput_PascalCaseOddRuleError(t *testing.T) { |
| 116 | defer func() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…