(t *testing.T)
| 23 | } |
| 24 | |
| 25 | func TestHeightCannotBeNegative(t *testing.T) { |
| 26 | Down(10) |
| 27 | |
| 28 | if autoheight < 0 { |
| 29 | t.Errorf("height is negative: %d", autoheight) |
| 30 | } |
| 31 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…