Example #1
0
// SkipBLog is to skip test with func name
func SkipBLog(b *testing.B) {
	//b.Skip(fmt.Sprintf("skipping %s", r.CurrentFunc(1)))
	b.Skip(fmt.Sprintf("skipping %s", r.CurrentFunc(2)))
}
Example #2
0
// SkipLog is to skip test with func name
func SkipLog(t *testing.T) {
	//t.Skip(fmt.Sprintf("skipping %s", r.CurrentFunc(1)))
	t.Skip(fmt.Sprintf("skipping %s", r.CurrentFunc(2)))
}