This commit is contained in:
2018-09-28 19:18:35 +00:00
parent fcb61e7ad5
commit 2053169005
2 changed files with 13 additions and 8 deletions

View File

@@ -481,7 +481,7 @@ namespace raven_integration
ResultCount.Should().BeLessOrEqualTo(1000);
//1755ms is the longest I've seen in initial testing with all 1000 results so setting slightly above
TimeToSearch.Should().BeLessThan(1760, "Constrained big data search should not be too slow");
TimeToSearch.Should().BeLessThan(2476, "Constrained big data search should not be too slow");
}//eot
@@ -513,11 +513,9 @@ namespace raven_integration
//Now validate the return list
var ResultCount = ((JArray)a.ObjectResponse["result"]).Count;
//assert it's not unbounded
// ResultCount.Should().BeGreaterThan(1000);
//24072 ms is the longest I've seen in initial testing with all bigData seeded results so setting slightly above
TimeToSearch.Should().BeLessThan(24072, "Unconstrained big data search should not be too slow");
TimeToSearch.Should().BeLessThan(38427, "Unconstrained big data search should not be too slow");
//Fastest is 17227 ms with 14143 results
}//eot