Update test_stopwatch.cpp
This commit is contained in:
parent
62a4b8ce4e
commit
8222ca4837
@ -39,6 +39,6 @@ TEST_CASE("stopwatch2", "[stopwatch]")
|
|||||||
auto val = std::stod(test_sink->lines()[0]);
|
auto val = std::stod(test_sink->lines()[0]);
|
||||||
auto diff_duration = duration_cast<std::chrono::duration<double>>(stop - start);
|
auto diff_duration = duration_cast<std::chrono::duration<double>>(stop - start);
|
||||||
|
|
||||||
REQUIRE(val >= diff_duration.count());
|
REQUIRE(val >= (diff_duration - milliseconds(3)).count());
|
||||||
REQUIRE(val <= (diff_duration + tolerance_duration).count());
|
REQUIRE(val <= (diff_duration + tolerance_duration).count());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user