(t *testing.T)
| 661 | } |
| 662 | |
| 663 | func Test_customEndOfLetterToLower(t *testing.T) { |
| 664 | names := []string{ |
| 665 | "ID", |
| 666 | "IP", |
| 667 | "userID", |
| 668 | "orderID", |
| 669 | "LocalIP", |
| 670 | "bus", |
| 671 | "BUS", |
| 672 | "x", |
| 673 | "s", |
| 674 | } |
| 675 | for _, name := range names { |
| 676 | t.Log(customEndOfLetterToLower(name, inflection.Plural(name))) |
| 677 | } |
| 678 | } |
nothing calls this directly
no test coverage detected