public void Verify_Update_Should_SetUpdatedDate()
        {
            // Arrange
            var mockSeriesLocation            = SeriesLocationsMockingSetup.DoMockingSetupForSeriesLocation(1);
            var mockSeriesLocationsRepository = SeriesLocationsMockingSetup.DoMockingSetupForRepository();

            mockSeriesLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockSeriesLocation.Object);
            var businessWorkflow = new SeriesLocationsBusinessWorkflow(mockSeriesLocationsRepository.Object, new SeriesLocationMapper());
            var expectedName     = "Stephen King (2)";
            var model            = SeriesLocationsMockingSetup.DoMockingSetupForSeriesLocationModel(1, expectedName);

            // Act
            businessWorkflow.Update(model.Object);
            // Assert
            mockSeriesLocation.Verify(m => m.UpdatedDate, Times.Once);
        }
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = SeriesLocationsMockingSetup.DoMockingSetupForSeriesLocation(1);
            var mockSeriesLocationsRepository = SeriesLocationsMockingSetup.DoMockingSetupForRepository();

            mockSeriesLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow        = new SeriesLocationsBusinessWorkflow(mockSeriesLocationsRepository.Object, new SeriesLocationMapper());
            var model                   = SeriesLocationsMockingSetup.DoMockingSetupForSeriesLocationModel(1);
            ISeriesLocationModel 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);
        }
 public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
 {
     // Arrange
     var entity = SeriesLocationsMockingSetup.DoMockingSetupForSeriesLocation(1);
     var mockSeriesLocationsRepository = SeriesLocationsMockingSetup.DoMockingSetupForRepository();
     mockSeriesLocationsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => entity.Object);
     var businessWorkflow = new SeriesLocationsBusinessWorkflow(mockSeriesLocationsRepository.Object, new SeriesLocationMapper());
     var model = SeriesLocationsMockingSetup.DoMockingSetupForSeriesLocationModel(1);
     ISeriesLocationModel 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);
 }
 public void Verify_Update_Should_SetUpdatedDate()
 {
     // Arrange
     var mockSeriesLocation = SeriesLocationsMockingSetup.DoMockingSetupForSeriesLocation(1);
     var mockSeriesLocationsRepository = SeriesLocationsMockingSetup.DoMockingSetupForRepository();
     mockSeriesLocationsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => mockSeriesLocation.Object);
     var businessWorkflow = new SeriesLocationsBusinessWorkflow(mockSeriesLocationsRepository.Object, new SeriesLocationMapper());
     var expectedName = "Stephen King (2)";
     var model = SeriesLocationsMockingSetup.DoMockingSetupForSeriesLocationModel(1, expectedName);
     // Act
     businessWorkflow.Update(model.Object);
     // Assert
     mockSeriesLocation.Verify(m => m.UpdatedDate, Times.Once);
 }