(t *testing.T)
| 28 | } |
| 29 | |
| 30 | func TestIsControl(t *testing.T) { |
| 31 | t.Skip() |
| 32 | for i := 0; i < 256; i++ { |
| 33 | control := i < 0x20 || i == 0x7f |
| 34 | if lib := unicode.Is(unicode.Cc, rune(i)); control != lib { |
| 35 | t.Errorf("%x: is control? %s", i, strconv.FormatBool(lib)) |
| 36 | } |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | func TestReslicing(t *testing.T) { |
| 41 | a := [5]int{0, 1, 2, 3, 4} |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…