This commit is contained in:
@@ -476,11 +476,13 @@ namespace raven_integration
|
|||||||
//assert it's not unbounded
|
//assert it's not unbounded
|
||||||
ResultCount.Should().BeLessOrEqualTo(1000);
|
ResultCount.Should().BeLessOrEqualTo(1000);
|
||||||
|
|
||||||
//assert the TotalResultsFound is greater than the results returned
|
if (ResultCount > 999)
|
||||||
var TotalResultsFound = a.ObjectResponse["result"]["totalResultsFound"].Value<long>();
|
{
|
||||||
//assert it's not unbounded
|
//assert the TotalResultsFound is greater than the results returned
|
||||||
TotalResultsFound.Should().BeGreaterThan(ResultCount);
|
var TotalResultsFound = a.ObjectResponse["result"]["totalResultsFound"].Value<long>();
|
||||||
|
//assert it's not unbounded
|
||||||
|
TotalResultsFound.Should().BeGreaterThan(ResultCount);
|
||||||
|
}
|
||||||
//5456 ms is the longest I've seen in initial testing with all 1000 results so setting 10% above
|
//5456 ms is the longest I've seen in initial testing with all 1000 results so setting 10% above
|
||||||
TimeToSearch.Should().BeLessThan(6000, "Constrained big data search should not be too slow");
|
TimeToSearch.Should().BeLessThan(6000, "Constrained big data search should not be too slow");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user