public void GetMopByWBS_Test()
        {
            //Set Data
            List <DropDownViewModel> lstdropDownViewModel = new List <DropDownViewModel>();
            DropDownViewModel        drpDownModel         = new DropDownViewModel()
            {
            };
            List <WBS_Deliverables> lstWBS = new List <WBS_Deliverables>();
            WBS_Deliverables        wbs1   = new WBS_Deliverables()
            {
                TypeOfWorkId             = 542,
                WBSElementId             = 17,
                FullWBSNumber            = "11234.001.002",
                ProductionMethodTypeId   = 1,
                ProductionMethodTypeName = "Post House"
            };
            WBS_Deliverables wbs2 = new WBS_Deliverables()
            {
                TypeOfWorkId             = 2345,
                WBSElementId             = 21,
                FullWBSNumber            = "12456.001.002",
                ProductionMethodTypeId   = 2,
                ProductionMethodTypeName = "Contract Request"
            };
            WBS_Deliverables wbs3 = new WBS_Deliverables()
            {
                TypeOfWorkId             = 3456,
                WBSElementId             = 31,
                FullWBSNumber            = "11234.003.001",
                ProductionMethodTypeId   = 3,
                ProductionMethodTypeName = "Miscellaneous"
            };

            lstWBS.Add(wbs1);
            lstWBS.Add(wbs2);
            lstWBS.Add(wbs3);

            DropDownViewModel vm1 = new DropDownViewModel()
            {
                Text  = "Post House",
                Value = "17",
                Id    = 17
            };
            DropDownViewModel vm2 = new DropDownViewModel()
            {
                Text  = "Contract Request",
                Value = "21",
                Id    = 21
            };
            DropDownViewModel vm3 = new DropDownViewModel()
            {
                Text  = "Miscellaneous",
                Value = "31",
                Id    = 17
            };

            lstdropDownViewModel.Add(vm1);
            lstdropDownViewModel.Add(vm2);
            lstdropDownViewModel.Add(vm3);

            //Inputs
            bool   isExternal   = false;
            string filter       = "";
            int    mrmUserid    = 1234;
            string networkLogin = "******";
            int    wbsId        = 31;

            #region Mock
            //Mock

            //FinanceService Service Mock
            mockFinanceService.Setup(x => x.GetMopByWBS(It.IsAny <int>(), It.IsAny <bool>())).Returns(lstWBS);
            //iWBS_DeliverablesRepository Mock
            mockWBS_DeliverablesRepository.Setup(x => x.GetMopByWBS(It.IsAny <int>(), It.IsAny <bool>())).Returns(lstWBS);


            var financeService = new FinanceServiceMock(
                _iWBS_DeliverablesRepository: mockWBS_DeliverablesRepository.Object);
            //Finance Controller Mock
            var DropDownController = new DropDownControllerMock(financeService: mockFinanceService.Object);

            #endregion

            //Assertions
            mockFinanceService.Verify();
            mockWBS_DeliverablesRepository.Verify();

            var serviceResult = financeService.GetMopByWBS(wbsId, isExternal);


            #region "Assertion of GetWBSByTow"
            Assert.IsNotNull(serviceResult);         //Result is not Null
            Assert.AreEqual(serviceResult, lstWBS);  //Asserting the expected return object with dummy data
            Assert.AreEqual(serviceResult.Count, 3); //Assert matching the return data with my input
            var finalList = serviceResult.Where(x => x.WBSElementId == wbsId).ToList();
            Assert.AreEqual(finalList.Count, 1);

            var controllerResult = DropDownController.GetMopByWBS(wbsId, isExternal, filter, mrmUserid, networkLogin);
            Assert.IsNotNull(controllerResult);//Result is not Null
            Assert.AreEqual(controllerResult.Count, 3);
            Assert.AreEqual(controllerResult[0].Text, "Post House");
            #endregion
        }