github.com/gopherjs/gopherjs@v1.19.0-beta1.0.20240506212314-27071a8796e4/internal/testmain/testdata/testpkg/inpackage_test.go (about)

     1  package testpkg
     2  
     3  import "testing"
     4  
     5  func TestXxx(t *testing.T) {}
     6  
     7  func BenchmarkXxx(b *testing.B) {}
     8  
     9  func FuzzXxx(f *testing.F) { f.Skip() }
    10  
    11  func ExampleXxx() {}
    12  
    13  func TestMain(m *testing.M) { m.Run() }