We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0484d09 commit 95f4d45Copy full SHA for 95f4d45
test/test_timeout.cpp
@@ -142,6 +142,10 @@ void pause_resume()
142
TEST_ASSERT_EQUAL(t.time_left_ms(), 0);
143
TEST_ASSERT_EQUAL(t.time_over(), true);
144
TEST_ASSERT_EQUAL(t.is_paused(), false);
145
+ t.resume();
146
+ TEST_ASSERT_EQUAL(t.time_left_ms(), 0);
147
+ TEST_ASSERT_EQUAL(t.time_over(), true);
148
+ TEST_ASSERT_EQUAL(t.is_paused(), false);
149
}
150
151
void no_expiration_in_pause()
0 commit comments