(t *testing.T)
| 192 | } |
| 193 | |
| 194 | func TestDescending(t *testing.T) { |
| 195 | t.Parallel() |
| 196 | |
| 197 | assert.Equal(t, 1, slice.Descending(1, 2)) |
| 198 | assert.Equal(t, 0, slice.Descending(1, 1)) |
| 199 | assert.Equal(t, -1, slice.Descending(2, 1)) |
| 200 | } |
| 201 | |
| 202 | func TestOmit(t *testing.T) { |
| 203 | t.Parallel() |
nothing calls this directly
no test coverage detected