mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-10 04:02:30 +00:00
24 lines
805 B
C++
24 lines
805 B
C++
#include "test/helpers/test_main_thread.h"
|
|
|
|
class TestWatchReadyQueue : public TestFixtureWithMainThread {
|
|
CPPUNIT_TEST_SUITE(TestWatchReadyQueue);
|
|
|
|
CPPUNIT_TEST(test_repeated_events_reset_quiet_time);
|
|
CPPUNIT_TEST(test_retry_restats_zero_length_file_without_new_event);
|
|
CPPUNIT_TEST(test_unrelated_events_do_not_delay_missing_retry);
|
|
CPPUNIT_TEST(test_missing_paths_expire_without_dispatch);
|
|
CPPUNIT_TEST(test_shutdown_discards_pending_loads);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
void test_repeated_events_reset_quiet_time();
|
|
void test_retry_restats_zero_length_file_without_new_event();
|
|
void test_unrelated_events_do_not_delay_missing_retry();
|
|
void test_missing_paths_expire_without_dispatch();
|
|
void test_shutdown_discards_pending_loads();
|
|
};
|