(t *testing.T)
| 107 | } |
| 108 | |
| 109 | func TestWrapfNil(t *testing.T) { |
| 110 | got := Wrapf(nil, "no error") |
| 111 | if got != nil { |
| 112 | t.Errorf("Wrapf(nil, \"no error\"): got %#v, expected nil", got) |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | func TestWrapf(t *testing.T) { |
| 117 | tests := []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…