(t *testing.T)
| 25 | } |
| 26 | |
| 27 | func TestLexicographicLess(t *testing.T) { |
| 28 | for _, test := range lexicographicLessTests { |
| 29 | actual := lexicographicLess(test.i, test.j) |
| 30 | assert.Equal(t, test.expected, actual) |
| 31 | } |
| 32 | } |
nothing calls this directly
no test coverage detected