mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-16 15:12:30 +00:00
9ff0cd28d5
schedule restarts a re-registered task's countdown, if_absent keeps the existing entry.
18 lines
414 B
C++
18 lines
414 B
C++
#include "test/helpers/test_main_thread.h"
|
|
|
|
class TestCommandScheduler : public TestFixtureWithMainThread {
|
|
CPPUNIT_TEST_SUITE(TestCommandScheduler);
|
|
|
|
CPPUNIT_TEST(test_parse_rearms_existing_key);
|
|
CPPUNIT_TEST(test_find_locates_a_scheduled_key);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
void test_parse_rearms_existing_key();
|
|
void test_find_locates_a_scheduled_key();
|
|
};
|