1package test
2
3// HelperT is a subset of testing.T that implements the Helper function
4type HelperT interface {
5	Helper()
6}
7