Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
12 lines
333 B
C++
12 lines
333 B
C++
#include "test_support.h"
|
|
|
|
int main() {
|
|
TestRunner runner;
|
|
run_legacy_descriptor_tests(runner);
|
|
run_switch2_command_tests(runner);
|
|
run_switch2_descriptor_tests(runner);
|
|
run_switch2_report_tests(runner);
|
|
run_switch_input_tests(runner);
|
|
run_switch_uart_protocol_tests(runner);
|
|
return runner.result();
|
|
}
|