public void ReturnTheCorrectResultsWhenAskedInLast30DaysExpressionIsUsed()
        {
            var expectedResults = new StackOverflowService.Entities(new Uri(_stackoverflowServiceRoot)).Posts
                .Where(p => p.Parent == null && p.AcceptedAnswerId != null
                    && p.CreationDate > DateTime.UtcNow.Subtract(TimeSpan.FromDays(30))
                    && p.Tags.Contains("<odata>"));

            var actualResults = new FluentStack().Questions.WithAcceptedAnswer()
                .Where(Asked.InLast(30.Days()))
                .Where(p => p.Tags.Contains("<odata>"));

            RunComparisonTest(expectedResults, actualResults);
        }
        public void ReturnTheCorrectResultsWhenWithAcceptedAnswerMethodIsUsed()
        {
            var expectedResults = new StackOverflowService.Entities(new Uri(_stackoverflowServiceRoot)).Posts
                                  .Where(p => p.Parent == null && p.AcceptedAnswerId != null &&
                                         p.CreationDate > DateTime.UtcNow.Subtract(TimeSpan.FromDays(30)) &&
                                         p.Tags.Contains("<odata>"));

            var actualResults = new FluentStack().Questions.WithAcceptedAnswer()
                                .Where(p => p.CreationDate > DateTime.UtcNow.Subtract(TimeSpan.FromDays(30)) &&
                                       p.Tags.Contains("<odata>"));

            RunComparisonTest(expectedResults, actualResults);
        }