コード例 #1
0
        public void GetInteractionsTestShouldBeEmpty()
        {
            var harness = new DomainTestHarness();

             harness.SetupGetCollectionForInteractions(null);

             var service = harness.GetInteractionService();
             var response = service.GetInteractions();
             response.Success.Should().BeTrue();
             response.Collection.Should().BeNull();
             harness.InteractionRepository.Verify();
        }
コード例 #2
0
        public void GetInteractionsTestShouldBeEmpty()
        {
            var harness = new DomainTestHarness();

            harness.SetupGetCollectionForInteractions(null);

            var service  = harness.GetInteractionService();
            var response = service.GetInteractions();

            response.Success.Should().BeTrue();
            response.Collection.Should().BeNull();
            harness.InteractionRepository.Verify();
        }
コード例 #3
0
        public void GetInteractionsTestShouldPass()
        {
            var harness = new DomainTestHarness();

             var collection = harness.Fixture.CreateMany<Interaction>().ToList();
             harness.SetupGetCollectionForInteractions(collection);

             var service = harness.GetInteractionService();
             var response = service.GetInteractions();
             response.Success.Should().BeTrue();
             response.Collection.Should().NotBeNullOrEmpty();
             response.Collection.Count().Should().Be(collection.Count());
             harness.InteractionRepository.Verify();
        }
コード例 #4
0
        public void GetInteractionsTestShouldPass()
        {
            var harness = new DomainTestHarness();

            var collection = harness.Fixture.CreateMany <Interaction>().ToList();

            harness.SetupGetCollectionForInteractions(collection);

            var service  = harness.GetInteractionService();
            var response = service.GetInteractions();

            response.Success.Should().BeTrue();
            response.Collection.Should().NotBeNullOrEmpty();
            response.Collection.Count().Should().Be(collection.Count());
            harness.InteractionRepository.Verify();
        }