2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-17 08:12:57 +00:00
restic/internal/test/helper.go

16 lines
277 B
Go
Raw Normal View History

// +build go1.9
package test
import "testing"
// Helperer marks the current function as a test helper.
type Helperer interface {
Helper()
}
// Helper returns a function that marks the current function as a helper function.
func Helper(t testing.TB) Helperer {
return t
}