public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
        {
            // Arrange
            var mockEpisodeLocationsRepository = EpisodeLocationsMockingSetup.DoMockingSetupForRepository();

            mockEpisodeLocationsRepository.Setup(m => m.Search(It.IsAny <IEpisodeLocationSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new Mock <List <IEpisodeLocation> >().Object);
            var businessWorkflow = new EpisodeLocationsBusinessWorkflow(mockEpisodeLocationsRepository.Object, new EpisodeLocationMapper());
            var model            = EpisodeLocationsMockingSetup.DoMockingSetupForEpisodeLocationModel();

            // Act
            try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
            // Assert
            mockEpisodeLocationsRepository.Verify(m => m.Add(It.IsAny <IEpisodeLocation>()), Times.Once);
        }
        public void Verify_Update_Should_SetUpdatedDate()
        {
            // Arrange
            var mockEpisodeLocation            = EpisodeLocationsMockingSetup.DoMockingSetupForEpisodeLocation(1);
            var mockEpisodeLocationsRepository = EpisodeLocationsMockingSetup.DoMockingSetupForRepository();

            mockEpisodeLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockEpisodeLocation.Object);
            var businessWorkflow = new EpisodeLocationsBusinessWorkflow(mockEpisodeLocationsRepository.Object, new EpisodeLocationMapper());
            var expectedName     = "Stephen King (2)";
            var model            = EpisodeLocationsMockingSetup.DoMockingSetupForEpisodeLocationModel(1, expectedName);

            // Act
            businessWorkflow.Update(model.Object);
            // Assert
            mockEpisodeLocation.Verify(m => m.UpdatedDate, Times.Once);
        }
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = EpisodeLocationsMockingSetup.DoMockingSetupForEpisodeLocation(1);
            var mockEpisodeLocationsRepository = EpisodeLocationsMockingSetup.DoMockingSetupForRepository();

            mockEpisodeLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow         = new EpisodeLocationsBusinessWorkflow(mockEpisodeLocationsRepository.Object, new EpisodeLocationMapper());
            var model                    = EpisodeLocationsMockingSetup.DoMockingSetupForEpisodeLocationModel(1);
            IEpisodeLocationModel 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_Create_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var mockEpisodeLocationsRepository = EpisodeLocationsMockingSetup.DoMockingSetupForRepository();
            var mockEpisodeLocation            = EpisodeLocationsMockingSetup.DoMockingSetupForEpisodeLocation(1);

            mockEpisodeLocationsRepository.Setup(m => m.Search(It.IsAny <IEpisodeLocationSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new List <IEpisodeLocation> {
                mockEpisodeLocation.Object
            });
            mockEpisodeLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockEpisodeLocation.Object);
            var businessWorkflow = new EpisodeLocationsBusinessWorkflow(mockEpisodeLocationsRepository.Object, new EpisodeLocationMapper());
            var model            = EpisodeLocationsMockingSetup.DoMockingSetupForEpisodeLocationModel();

            // 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
            mockEpisodeLocationsRepository.Verify(m => m.Add(It.IsAny <IEpisodeLocation>()), Times.Never);
        }