CollectT implements the TestingT interface and collects all errors.
| 1897 | |
| 1898 | // CollectT implements the TestingT interface and collects all errors. |
| 1899 | type CollectT struct { |
| 1900 | errors []error |
| 1901 | } |
| 1902 | |
| 1903 | // Errorf collects the error. |
| 1904 | func (c *CollectT) Errorf(format string, args ...interface{}) { |
nothing calls this directly
no outgoing calls
no test coverage detected