public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
 {
     // Arrange
     var mockProfilesRepository = ProfilesMockingSetup.DoMockingSetupForRepository();
     mockProfilesRepository.Setup(m => m.Search(It.IsAny<IProfileSearchModel>(), It.IsAny<bool>()))
         .Returns(() => new Mock<List<IProfile>>().Object);
     var businessWorkflow = new ProfilesBusinessWorkflow(mockProfilesRepository.Object, new ProfileMapper());
     var model = ProfilesMockingSetup.DoMockingSetupForProfileModel();
     // Act
     try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
     // Assert
     mockProfilesRepository.Verify(m => m.Add(It.IsAny<IProfile>()), Times.Once);
 }
        public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
        {
            // Arrange
            var mockProfilesRepository = ProfilesMockingSetup.DoMockingSetupForRepository();

            mockProfilesRepository.Setup(m => m.Search(It.IsAny <IProfileSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new Mock <List <IProfile> >().Object);
            var businessWorkflow = new ProfilesBusinessWorkflow(mockProfilesRepository.Object, new ProfileMapper());
            var model            = ProfilesMockingSetup.DoMockingSetupForProfileModel();

            // Act
            try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
            // Assert
            mockProfilesRepository.Verify(m => m.Add(It.IsAny <IProfile>()), Times.Once);
        }
 public void Verify_Create_WithDuplicateData_Should_NotAddAndReturnOriginal()
 {
     // Arrange
     var mockProfilesRepository = ProfilesMockingSetup.DoMockingSetupForRepository();
     var mockProfile = ProfilesMockingSetup.DoMockingSetupForProfile(1);
     mockProfilesRepository.Setup(m => m.Search(It.IsAny<IProfileSearchModel>(), It.IsAny<bool>()))
         .Returns(() => new List<IProfile> { mockProfile.Object } );
     mockProfilesRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => mockProfile.Object);
     var businessWorkflow = new ProfilesBusinessWorkflow(mockProfilesRepository.Object, new ProfileMapper());
     var model = ProfilesMockingSetup.DoMockingSetupForProfileModel();
     // 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
     mockProfilesRepository.Verify(m => m.Add(It.IsAny<IProfile>()), Times.Never);
 }
        public void Verify_Create_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var mockProfilesRepository = ProfilesMockingSetup.DoMockingSetupForRepository();
            var mockProfile            = ProfilesMockingSetup.DoMockingSetupForProfile(1);

            mockProfilesRepository.Setup(m => m.Search(It.IsAny <IProfileSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new List <IProfile> {
                mockProfile.Object
            });
            mockProfilesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockProfile.Object);
            var businessWorkflow = new ProfilesBusinessWorkflow(mockProfilesRepository.Object, new ProfileMapper());
            var model            = ProfilesMockingSetup.DoMockingSetupForProfileModel();

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