aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCarbenium <carbenium@outlook.com>2020-07-29 00:16:15 +0200
committerPeter Keresztes Schmidt <carbenium@outlook.com>2020-08-01 12:43:55 +0200
commit228696bf80bcd55d35445cd24ae119020c310f88 (patch)
tree073acb30aafa0a2e83e570c60d5582e9ac605885 /tests
parente55516348dbabaa8c9d559426315f3f70967acaa (diff)
Core/Common: Merge TimeTrackerSmall with TimeTracker
Diffstat (limited to 'tests')
-rw-r--r--tests/common/test-Timer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/common/test-Timer.cpp b/tests/common/test-Timer.cpp
index b71251b2ea9..76d02d51aa0 100644
--- a/tests/common/test-Timer.cpp
+++ b/tests/common/test-Timer.cpp
@@ -20,9 +20,9 @@
#include "Timer.h"
-TEST_CASE("TimerTrackerSmall: Check if time passed")
+TEST_CASE("TimeTracker: Check if time passed")
{
- TimeTrackerSmall tracker(1000 /*ms*/);
+ TimeTracker tracker(1000 /*ms*/);
REQUIRE_FALSE(tracker.Passed());
REQUIRE(tracker.GetExpiry() == 1s);
@@ -39,9 +39,9 @@ TEST_CASE("TimerTrackerSmall: Check if time passed")
REQUIRE(tracker.GetExpiry() == -500ms);
}
-TEST_CASE("TimerTrackerSmall: Reset timer")
+TEST_CASE("TimeTracker: Reset timer")
{
- TimeTrackerSmall tracker(1000 /*ms*/);
+ TimeTracker tracker(1000 /*ms*/);
REQUIRE_FALSE(tracker.Passed());
REQUIRE(tracker.GetExpiry() == 1s);