summaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/norunexample/test_test.go
blob: d2e919838fb571404999ae2c71ddeb5e6766bd6a (plain)
1
2
3
4
5
6
7
8
9
10
package pkg

import (
	"os"
	"testing"
)

func TestBuilt(t *testing.T) {
	os.Stdout.Write([]byte("A normal test was executed.\n"))
}