(t *testing.T)
| 150 | } |
| 151 | |
| 152 | func TestWithStackNil(t *testing.T) { |
| 153 | got := WithStack(nil) |
| 154 | if got != nil { |
| 155 | t.Errorf("WithStack(nil): got %#v, expected nil", got) |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | func TestWithStack(t *testing.T) { |
| 160 | tests := []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…