public void AddsNothingToList_GivenNoIncludeExpression() { var spec = new StoreEmptySpec(); spec.IncludeExpressions.Should().BeEmpty(); }
public void SetsNothing_GivenNoInMemoryExpression() { var spec = new StoreEmptySpec(); spec.InMemory.Should().BeNull(); }
public void SetsNothing_GivenNoPostProcessingAction() { var spec = new StoreEmptySpec(); spec.PostProcessingAction.Should().BeNull(); }
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); }
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(); }
public void DoesNothing_GivenSpecWithoutIgnoreQueryFilters() { var spec = new StoreEmptySpec(); spec.IgnoreQueryFilters.Should().Be(false); }