(t *testing.T)
| 212 | } |
| 213 | |
| 214 | func TestMultiErrorErrorsCopy(t *testing.T) { |
| 215 | errList := []error{ |
| 216 | errors.New("foo"), |
| 217 | errors.New("bar"), |
| 218 | errors.New("baz"), |
| 219 | } |
| 220 | me := newMultiError(errList...) |
| 221 | assert.Equal(t, errList, me.Errors()) |
| 222 | } |
| 223 | |
| 224 | func TestErrRequiredFlags_Error(t *testing.T) { |
| 225 | missingFlags := []string{"flag1", "flag2"} |
nothing calls this directly
no test coverage detected
searching dependent graphs…