Related refactoring to updated of ThrottleList to use new Scheduler.

This commit is contained in:
Jari Sundell
2025-05-12 10:38:07 +02:00
committed by GitHub
parent 6d888c008d
commit 9ff373fe58
33 changed files with 1005 additions and 230 deletions
+24
View File
@@ -0,0 +1,24 @@
#include "test/helpers/test_fixture.h"
#include "test/helpers/test_main_thread.h"
class TestCommandDynamic : public test_fixture {
CPPUNIT_TEST_SUITE(TestCommandDynamic);
CPPUNIT_TEST(test_basics);
CPPUNIT_TEST(test_get_set);
CPPUNIT_TEST(test_old_style);
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
void tearDown();
void test_basics();
void test_get_set();
void test_old_style();
private:
std::unique_ptr<TestMainThread> m_test_main_thread;
};