Skipf is equivalent to Logf followed by SkipNow.
(format string, args ...interface{})
| 279 | |
| 280 | // Skipf is equivalent to Logf followed by SkipNow. |
| 281 | func (c *common) Skipf(format string, args ...interface{}) { |
| 282 | c.log(fmt.Sprintf(format, args...)) |
| 283 | c.SkipNow() |
| 284 | } |
| 285 | |
| 286 | // SkipNow marks the test as having been skipped and stops its execution |
| 287 | // by calling runtime.Goexit. |