public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
 {
     // Arrange
     var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
     mockVolumeLocationsRepository.Setup(m => m.Search(It.IsAny<IVolumeLocationSearchModel>(), It.IsAny<bool>()))
         .Returns(() => new Mock<List<IVolumeLocation>>().Object);
     var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
     var model = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel();
     // Act
     try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
     // Assert
     mockVolumeLocationsRepository.Verify(m => m.Add(It.IsAny<IVolumeLocation>()), Times.Once);
 }
Exemple #2
0
        public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
        {
            // Arrange
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();

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

            // Act
            try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
            // Assert
            mockVolumeLocationsRepository.Verify(m => m.Add(It.IsAny <IVolumeLocation>()), Times.Once);
        }
 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);
 }
Exemple #4
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);
        }