$ go test mypkg
$ go test mypkg -run TestSomething
$ go test mypkg -run Something.*In this example, all tests cases whose name starts with `Something` will be executed, no matter what comes after. Package library used in these examples is the standard testing library, which comes with Go language.