public void AddsNothingToList_GivenNoIncludeExpression()
        {
            var spec = new StoreEmptySpec();

            spec.IncludeExpressions.Should().BeEmpty();
        }
        public void SetsNothing_GivenNoInMemoryExpression()
        {
            var spec = new StoreEmptySpec();

            spec.InMemory.Should().BeNull();
        }
Beispiel #3
0
        public void SetsNothing_GivenNoPostProcessingAction()
        {
            var spec = new StoreEmptySpec();

            spec.PostProcessingAction.Should().BeNull();
        }
Beispiel #4
0
        public void DoesNothing_GivenSpecWithoutAsNoTrackingWithIdentityResolution()
        {
            var spec = new StoreEmptySpec();

            spec.AsNoTrackingWithIdentityResolution.Should().Be(false);
        }
        public void DoesNothing_GivenSpecWithoutAsNoTracking()
        {
            var spec = new StoreEmptySpec();

            spec.AsNoTracking.Should().Be(false);
        }
Beispiel #6
0
        public void DoesNothing_GivenSpecWithoutAsSplitQuery()
        {
            var spec = new StoreEmptySpec();

            spec.AsSplitQuery.Should().Be(false);
        }
        public void AddsNothingToList_GivenNoWhereExpression()
        {
            var spec = new StoreEmptySpec();

            spec.SearchCriterias.Should().BeEmpty();
        }
Beispiel #8
0
        public void DoesNothing_GivenSpecWithoutIgnoreQueryFilters()
        {
            var spec = new StoreEmptySpec();

            spec.IgnoreQueryFilters.Should().Be(false);
        }