protected override void EstablishContext()
        {
            postRequest = GoalPlanningPostRequest.Create(suppliedLocalEducationAgencyId, suppliedMetricVariantId102, GetGoalPlanningActions());

            goalPlanningRepository.Setup(x => x.Delete(It.IsAny<Expression<Func<EducationOrganizationGoalPlanning, bool>>>())).Callback<Expression<Func<EducationOrganizationGoalPlanning, bool>>>(x => postedGoalPlanning.Add(x));

            base.EstablishContext();
        }
        protected override void EstablishContext()
        {
            postRequest = GoalPlanningPostRequest.Create(suppliedLocalEducationAgencyId, suppliedMetricVariantId102, GetGoalPlanningActions());

            goalPlanningRepository.Setup(x => x.Save(It.IsAny<EducationOrganizationGoalPlanning>())).Callback<EducationOrganizationGoalPlanning>(x => postedGoalPlanning.Add(x));

            base.EstablishContext();
            suppliedProposedGoal1 = .111m;
        }