Add tests for the shell commander

This commit is contained in:
2024-06-17 00:15:10 +01:00
parent 802b70f5ee
commit 8a91a0ec6b
3 changed files with 82 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
#ifndef TEST_SHELL_COMMANDER_H
#define TEST_SHELL_COMMANDER_H
#include "tester.h"
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
TestFuncResult test_commander_cmd_success(void);
TestFuncResult test_commander_cmd_failure(void);
TestFuncResult test_commander_cmd_out_buf_success(void);
TestFuncResult test_commander_cmd_out_buf_failure(void);
#ifdef __cplusplus
}
#endif // __cplusplus
#endif // !TEST_SHELL_COMMANDER_H