github.com/gagliardetto/golang-go@v0.0.0-20201020153340-53909ea70814/cmd/go/testdata/src/vend/hello/hello_test.go (about)

     1  package main
     2  
     3  import (
     4  	"strings" // really ../vendor/strings
     5  	"testing"
     6  )
     7  
     8  func TestMsgInternal(t *testing.T) {
     9  	if strings.Msg != "hello, world" {
    10  		t.Fatalf("unexpected msg: %v", strings.Msg)
    11  	}
    12  }