44 lines
744 B
C
44 lines
744 B
C
/**
|
|
* Copyright (c) @CompanyNameMagicTag 2022-2022. All rights reserved. \n
|
|
*
|
|
* Description: Provides test suite auxiliary \n
|
|
* Author: @CompanyNameTag \n
|
|
* History: \n
|
|
* 2022-09-14, Create file. \n
|
|
*/
|
|
|
|
#ifndef TEST_AUXILIARY_H
|
|
#define TEST_AUXILIARY_H
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
#endif /* __cplusplus */
|
|
|
|
/**
|
|
* @defgroup test_common_testsuite_auxiliary Auxiliary
|
|
* @ingroup test_common_testsuite
|
|
* @{
|
|
*/
|
|
/**
|
|
* @if Eng
|
|
* @brief Add test suite auxiliary functions.
|
|
* @else
|
|
* @brief 增加辅助测试套函数接口。
|
|
* @endif
|
|
*/
|
|
void add_auxiliary_functions(void);
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|