(args ...interface{})
| 183 | } |
| 184 | |
| 185 | func (t *testCase) Fatal(args ...interface{}) { |
| 186 | t.failed = fmt.Sprint(args...) |
| 187 | } |
| 188 | |
| 189 | func (t *testCase) Fatalf(message string, args ...interface{}) { |
| 190 | t.failed = fmt.Sprintf(message, args...) |
no outgoing calls
no test coverage detected