(t *testing.T)
| 19 | } |
| 20 | |
| 21 | func TestValues(t *testing.T) { |
| 22 | t.Parallel() |
| 23 | |
| 24 | is := require.New(t) |
| 25 | |
| 26 | r1 := Values(map[string]int{"foo": 1, "bar": 2}) |
| 27 | sort.Ints(r1) |
| 28 | |
| 29 | is.Equal([]int{1, 2}, r1) |
| 30 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…