(t *testing.T)
| 199 | } |
| 200 | |
| 201 | func TestWithMessagefNil(t *testing.T) { |
| 202 | got := WithMessagef(nil, "no error") |
| 203 | if got != nil { |
| 204 | t.Errorf("WithMessage(nil, \"no error\"): got %#v, expected nil", got) |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | func TestWithMessagef(t *testing.T) { |
| 209 | tests := []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…