public void No_Include_Paths()
        {
            // Arrange
            _httpContextAccess.HttpContext.Request.Query = new QueryCollection(new Dictionary <string, StringValues>());

            // Act
            var result = _sut.IncludedSet <Customer>();

            // Assert
            _applicator.DidNotReceive().Include(Arg.Any <IQueryable <Customer> >(), Arg.Any <string>());
        }