# executes, but no test is run
go test main_test.go

# executes, but no test is run
go test -run=Test001 main_test.go

# TODO: should not run tests as well as the std go above?

godebugtester test main_test.go
contains stdout "recv: println(2)"

fail go test
contains stderr "go.mod file not found"
fail godebugtester test
contains error "go.mod file not found"

-- main_test.go --
package main
import "testing"
func Test001(t*testing.T){
	_=1
	println(2)
}
