private static IExportInvoicesService MakeTestsService(bool useAutoFac, ref MockDependents mockDependents)
        {
            if (useAutoFac)
            {
                ContainerBuilder cb = GetTestsContainer();

                // Register mocks
                MockDependents.RegisterInContainer(ref cb);

                var testcontainer = cb.Build();

                return(testcontainer.Resolve <IExportInvoicesService>());
            }
            else
            {
                mockDependents = new MockDependents();
                mockDependents.IExportSettingLogic    = MockDependents.MakeIExportSettingLogic();
                mockDependents.ICustomerRepository    = MockDependents.MakeICustomerRepository();
                mockDependents.IOrderLogic            = MockDependents.MakeIOrderLogic();
                mockDependents.IOnlinePaymentsLogic   = MockDependents.MakeIOnlinePaymentsLogic();
                mockDependents.IKPayInvoiceRepository = MockDependents.MakeIKPayInvoiceRepository();

                var testunit = new ExportInvoicesServiceImpl(mockDependents.IExportSettingLogic.Object, mockDependents.IOrderLogic.Object,
                                                             mockDependents.IOnlinePaymentsLogic.Object, mockDependents.IKPayInvoiceRepository.Object,
                                                             mockDependents.ICustomerRepository.Object);
                return(testunit);
            }
        }
Example #2
0
        private static IOrderLogic MakeTestsLogic(bool useAutoFac, ref MockDependents mockDependents)
        {
            if (useAutoFac)
            {
                ContainerBuilder cb = GetTestsContainer();

                // Register mocks
                MockDependents.RegisterInContainer(ref cb);

                IContainer testcontainer = cb.Build();

                return(testcontainer.Resolve <IOrderLogic>());
            }
            mockDependents = new MockDependents();
            mockDependents.ICacheRepository             = MockDependents.MakeICacheRepository();
            mockDependents.ICatalogLogic                = MockDependents.MakeICatalogLogic();
            mockDependents.INoteLogic                   = MockDependents.MakeINoteLogic();
            mockDependents.ICustomerRepository          = MockDependents.MakeICustomerRepository();
            mockDependents.IEventLogRepository          = MockDependents.MakeIEventLogRepository();
            mockDependents.IOrderQueueLogic             = MockDependents.MakeIOrderQueueLogic();
            mockDependents.IOrderedFromListRepository   = MockDependents.MakeIOrderedFromListRepository();
            mockDependents.IKPayInvoiceRepository       = MockDependents.MakeIKPayInvoiceRepository();
            mockDependents.IPriceLogic                  = MockDependents.MakeIPriceLogic();
            mockDependents.IPurchaseOrderRepository     = MockDependents.MakeIPurchaseOrderRepository();
            mockDependents.IOrderHistoryHeaderRepsitory = MockDependents.MakeIOrderHistoryHeaderRepsitory();
            mockDependents.IShipDateRepository          = MockDependents.MakeIShipDateRepository();

            OrderLogicImpl testunit = new OrderLogicImpl(mockDependents.IPurchaseOrderRepository.Object, mockDependents.ICatalogLogic.Object, mockDependents.INoteLogic.Object,
                                                         mockDependents.ICacheRepository.Object, mockDependents.IOrderQueueLogic.Object, mockDependents.IPriceLogic.Object,
                                                         mockDependents.IEventLogRepository.Object, mockDependents.IShipDateRepository.Object, mockDependents.ICustomerRepository.Object,
                                                         mockDependents.IOrderHistoryHeaderRepsitory.Object, mockDependents.IKPayInvoiceRepository.Object,
                                                         mockDependents.IOrderedFromListRepository.Object, null, null);

            return(testunit);
        }
        private static IOnlinePaymentsLogic MakeTestsLogic(bool useAutoFac, ref MockDependents mockDependents)
        {
            if (useAutoFac)
            {
                ContainerBuilder cb = GetTestsContainer();

                // Register mocks
                MockDependents.RegisterInContainer(ref cb);

                IContainer testcontainer = cb.Build();

                return(testcontainer.Resolve <IOnlinePaymentsLogic>());
            }
            mockDependents = new MockDependents();
            mockDependents.ICacheRepository                  = MockDependents.MakeICacheRepository();
            mockDependents.IAuditLogRepository               = MockDependents.MakeIAuditLogRepository();
            mockDependents.ICustomerBankRepository           = MockDependents.MakeICustomerBankRepository();
            mockDependents.ICustomerRepository               = MockDependents.MakeICustomerRepository();
            mockDependents.IEventLogRepository               = MockDependents.MakeIEventLogRepository();
            mockDependents.IGenericQueueRepository           = MockDependents.MakeIGenericQueueRepository();
            mockDependents.IInternalUserAccessRepository     = MockDependents.MakeIInternalUserAccessRepository();
            mockDependents.IKPayInvoiceRepository            = MockDependents.MakeIKPayInvoiceRepository();
            mockDependents.IKPayLogRepository                = MockDependents.MakeIKPayLogRepository();
            mockDependents.IKPayPaymentTransactionRepository = MockDependents.MakeIKPayPaymentTransactionRepository();
            mockDependents.IOrderHistoryHeaderRepsitory      = MockDependents.MakeIOrderHistoryHeaderRepsitory();

            OnlinePaymentLogicImpl testunit = new OnlinePaymentLogicImpl(mockDependents.IKPayInvoiceRepository.Object, mockDependents.ICustomerBankRepository.Object, mockDependents.IOrderHistoryHeaderRepsitory.Object,
                                                                         mockDependents.ICustomerRepository.Object, mockDependents.IGenericQueueRepository.Object, mockDependents.IKPayPaymentTransactionRepository.Object,
                                                                         mockDependents.IKPayLogRepository.Object, mockDependents.IAuditLogRepository.Object, mockDependents.IEventLogRepository.Object,
                                                                         mockDependents.IInternalUserAccessRepository.Object, mockDependents.ICacheRepository.Object);

            return(testunit);
        }