github.com/go-enjin/golang-org-x-text@v0.12.1-enjin.2/internal/testtext/go1_7.go (about)

     1  // Copyright 2016 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build go1.7
     6  // +build go1.7
     7  
     8  package testtext
     9  
    10  import "testing"
    11  
    12  func Run(t *testing.T, name string, fn func(t *testing.T)) bool {
    13  	return t.Run(name, fn)
    14  }
    15  
    16  func Bench(b *testing.B, name string, fn func(b *testing.B)) bool {
    17  	return b.Run(name, fn)
    18  }