None of the answers tell how to run test in specific file
Use regexp to find all the test functions(is there a better way?) in the given file, and run the with -run:
go test -v --run "("$(grep '^func Test' your_filename_test.go | awk -F'[ (]' '{print $2}' | paste -s -d"|')")"