public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
 {
     // Arrange
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     mockLocationStoryArcsRepository.Setup(m => m.Search(It.IsAny<ILocationStoryArcSearchModel>(), It.IsAny<bool>()))
         .Returns(() => new Mock<List<ILocationStoryArc>>().Object);
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
     var model = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel();
     // Act
     try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
     // Assert
     mockLocationStoryArcsRepository.Verify(m => m.Add(It.IsAny<ILocationStoryArc>()), Times.Once);
 }
示例#2
0
        public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
        {
            // Arrange
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();

            mockLocationStoryArcsRepository.Setup(m => m.Search(It.IsAny <ILocationStoryArcSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new Mock <List <ILocationStoryArc> >().Object);
            var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
            var model            = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel();

            // Act
            try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
            // Assert
            mockLocationStoryArcsRepository.Verify(m => m.Add(It.IsAny <ILocationStoryArc>()), Times.Once);
        }
 public void Verify_Create_WithDuplicateData_Should_NotAddAndReturnOriginal()
 {
     // Arrange
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     var mockLocationStoryArc = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArc(1);
     mockLocationStoryArcsRepository.Setup(m => m.Search(It.IsAny<ILocationStoryArcSearchModel>(), It.IsAny<bool>()))
         .Returns(() => new List<ILocationStoryArc> { mockLocationStoryArc.Object } );
     mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => mockLocationStoryArc.Object);
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
     var model = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel();
     // 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
     mockLocationStoryArcsRepository.Verify(m => m.Add(It.IsAny<ILocationStoryArc>()), Times.Never);
 }
示例#4
0
        public void Verify_Create_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
            var mockLocationStoryArc            = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArc(1);

            mockLocationStoryArcsRepository.Setup(m => m.Search(It.IsAny <ILocationStoryArcSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new List <ILocationStoryArc> {
                mockLocationStoryArc.Object
            });
            mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockLocationStoryArc.Object);
            var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
            var model            = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel();

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