package examples import ( "fmt" "testing" ) func TestCreateSamplePlan(_ *testing.T) { plan := CreateSamplePlan() fmt.Println("created plan") fmt.Printf("%+v\n", plan) }