(c *gc.C)
| 376 | } |
| 377 | |
| 378 | func (*functionSuite) TestSetLocationWithNilError(c *gc.C) { |
| 379 | c.Assert(errors.SetLocation(nil, 1), gc.IsNil) |
| 380 | } |
| 381 | |
| 382 | func (*functionSuite) TestSetLocation(c *gc.C) { |
| 383 | err := errors.New("test") |
nothing calls this directly
no test coverage detected