diff options
Diffstat (limited to 'src/utils/timer_unittest.cc')
-rw-r--r-- | src/utils/timer_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/timer_unittest.cc b/src/utils/timer_unittest.cc index 41bfad48c..4a9f245da 100644 --- a/src/utils/timer_unittest.cc +++ b/src/utils/timer_unittest.cc @@ -30,12 +30,12 @@ static const int MAX_TICK_VALUE = INT_MAX / 2; -TEST_CASE("timer const") +TEST_CASE("timer const", "") { REQUIRE(MILLISECONDS_IN_A_TICK != 0); } -TEST_CASE("timer get_elapsed_time") +TEST_CASE("timer get_elapsed_time", "") { tick_time = 0; REQUIRE(get_elapsed_time(0) == 0); @@ -62,7 +62,7 @@ TEST_CASE("timer get_elapsed_time") 10001 * MILLISECONDS_IN_A_TICK); } -TEST_CASE("timer get_elapsed_time1") +TEST_CASE("timer get_elapsed_time1", "") { tick_time = 0; REQUIRE(get_elapsed_time1(0) == 0); |