# cleanup dir at the end

#godebugtester test -work main_test.go main.go
godebugtester test main_test.go main.go

ls $WORK
fail test -f $WORK/*.godebug

-- go.mod --
module mod1
-- main.go --
package main
func main() {
	fa()
}
func fa()int{
	return 10
}	
-- main_test.go --
package main
import "testing"
func TestFa(t*testing.T){
	fa()
	//t.Fail()
}

