first version of embedded test stand done

This commit is contained in:
2026-05-18 15:21:18 +03:00
commit 6179eb954a
35 changed files with 2042 additions and 0 deletions

12
src/core/cli_parser.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef CLI_PARSER_H
#define CLI_PARSER_H
#include "test_options.h"
class CLIParser
{
public:
static TestOptions parse(int argc, char* argv[]);
};
#endif // CLI_PARSER_H