(t *testing.T)
| 84 | } |
| 85 | |
| 86 | func TestInput_CamelCaseNoRule(t *testing.T) { |
| 87 | str := New("Camel case this_complicated__string%%") |
| 88 | against := "camelCaseThisComplicatedString%%" |
| 89 | if val := str.CamelCase().Get(); val != against { |
| 90 | t.Errorf("Expected: to be %s but got: %s", "camelCaseThisComplicatedString", val) |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | func TestInput_CamelCaseOddRuleError(t *testing.T) { |
| 95 | defer func() { |