MCPcopy Index your code
hub / github.com/tinygo-org/tinygo / Skipf

Method Skipf

src/testing/testing.go:281–284  ·  view source on GitHub ↗

Skipf is equivalent to Logf followed by SkipNow.

(format string, args ...interface{})

Source from the content-addressed store, hash-verified

279
280// Skipf is equivalent to Logf followed by SkipNow.
281func (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.

Callers

nothing calls this directly

Calls 2

logMethod · 0.95
SkipNowMethod · 0.95

Tested by

no test coverage detected