package main import ( "fmt" "ruleprocess/structure" "testing" ) func TestRect2Point(t *testing.T) { rect := structure.Rect{100,100,200,200} points := Rect2Point(rect) fmt.Println(points) }