"github.com/cloudfoundry/cli/cf/actors/plan_builder" "github.com/cloudfoundry/cli/cf/api/fakes" testorg "github.com/cloudfoundry/cli/cf/api/organizations/fakes" "github.com/cloudfoundry/cli/cf/models" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("Plan builder", func() { var ( builder plan_builder.PlanBuilder planRepo *fakes.FakeServicePlanRepo visibilityRepo *fakes.FakeServicePlanVisibilityRepository orgRepo *testorg.FakeOrganizationRepository plan1 models.ServicePlanFields plan2 models.ServicePlanFields org1 models.Organization org2 models.Organization ) BeforeEach(func() { planRepo = &fakes.FakeServicePlanRepo{} visibilityRepo = &fakes.FakeServicePlanVisibilityRepository{} orgRepo = &testorg.FakeOrganizationRepository{} builder = plan_builder.NewBuilder(planRepo, visibilityRepo, orgRepo) plan1 = models.ServicePlanFields{
"github.com/cloudfoundry/cli/cf/actors/plan_builder" "github.com/cloudfoundry/cli/cf/api/fakes" testorg "github.com/cloudfoundry/cli/cf/api/organizations/fakes" "github.com/cloudfoundry/cli/cf/models" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("Plan builder", func() { var ( builder plan_builder.PlanBuilder planRepo *fakes.FakeServicePlanRepo visibilityRepo *fakes.FakeServicePlanVisibilityRepository orgRepo *testorg.FakeOrganizationRepository plan1 models.ServicePlanFields plan2 models.ServicePlanFields org1 models.Organization org2 models.Organization ) BeforeEach(func() { plan_builder.PlanToOrgsVisibilityMap = nil plan_builder.OrgToPlansVisibilityMap = nil planRepo = &fakes.FakeServicePlanRepo{} visibilityRepo = &fakes.FakeServicePlanVisibilityRepository{} orgRepo = &testorg.FakeOrganizationRepository{} builder = plan_builder.NewBuilder(planRepo, visibilityRepo, orgRepo)