package application import ( "fmt" "os" "testing" ) func TestGetSignal(t *testing.T) { fmt.Println(os.Getpid()) <-GetSignal() fmt.Println("signal") }