mirror of
https://github.com/octoleo/restic.git
synced 2024-11-06 05:17:50 +00:00
14 lines
260 B
Go
14 lines
260 B
Go
|
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
|
||
|
}
|