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
+14
View File
@@ -0,0 +1,14 @@
#include "test/helpers/test_fixture.h"
class TestCommand : public test_fixture {
CPPUNIT_TEST_SUITE(TestCommand);
CPPUNIT_TEST(test_stack);
CPPUNIT_TEST(test_stack_double);
CPPUNIT_TEST_SUITE_END();
public:
void test_stack();
void test_stack_double();
};