コード例 #1
0
        public void Verify_Update_Should_SetUpdatedDate()
        {
            // Arrange
            var mockVolumeLocation            = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocation(1);
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();

            mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockVolumeLocation.Object);
            var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
            var expectedName     = "Stephen King (2)";
            var model            = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel(1, expectedName);

            // Act
            businessWorkflow.Update(model.Object);
            // Assert
            mockVolumeLocation.Verify(m => m.UpdatedDate, Times.Once);
        }
コード例 #2
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocation(1);
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();

            mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow        = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
            var model                   = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel(1);
            IVolumeLocationModel result = null;

            // Act
            try { result = businessWorkflow.Update(model.Object); }
            catch { /* ignored, the Get call at the end doesn't work because don't get a real entity with id on it */ }
            // Assert
            Assert.NotNull(result);
            Assert.Equal("/TEST/KING-STEPHEN", result.ApiDetailUrl);
            Assert.Null(result.UpdatedDate);
        }
コード例 #3
0
        public void Verify_Create_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
            var mockVolumeLocation            = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocation(1);

            mockVolumeLocationsRepository.Setup(m => m.Search(It.IsAny <IVolumeLocationSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new List <IVolumeLocation> {
                mockVolumeLocation.Object
            });
            mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockVolumeLocation.Object);
            var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
            var model            = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel();

            // Act
            try { businessWorkflow.Create(model.Object); }
            catch { /* ignored, the Get call at the end doesn't work because don't get a real entity with id on it */ }
            // Assert
            mockVolumeLocationsRepository.Verify(m => m.Add(It.IsAny <IVolumeLocation>()), Times.Never);
        }