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

     1  package testpkg_test
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  )
     7  
     8  func TestYyy(t *testing.T) {}
     9  
    10  func BenchmarkYyy(b *testing.B) {}
    11  
    12  func FuzzYyy(f *testing.F) { f.Skip() }
    13  
    14  func ExampleYyy() {
    15  	fmt.Println("hello") // Output: hello
    16  }