(t *testing.T)
| 174 | } |
| 175 | |
| 176 | func TestWithMessageNil(t *testing.T) { |
| 177 | got := WithMessage(nil, "no error") |
| 178 | if got != nil { |
| 179 | t.Errorf("WithMessage(nil, \"no error\"): got %#v, expected nil", got) |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | func TestWithMessage(t *testing.T) { |
| 184 | tests := []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…