我无法编译任何合理的结构来对模块的辅助/静态函数进行单元测试。几乎所有这个模块都是静态函数,它有很多,所以我试着不把所有的测试放在同一个文件中。具体(大量)错误是:
/usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/crt1.o(.debug_info): relocation 0 has invalid symbol index 11
但我对将要编译的一般方法感兴趣。
从命令行首先安装Cunit:
# Install cunit
sudo apt-get install libcunit1 libcunit1-doc libcunit1-dev
在module_a.c
:
#include <stdio.h>
int main(void)
{
// Do the real thing
printf("The number 42: %d\n", get_42());
printf("The number 0: %d\n", get_0());
return 0;
}
static int32_t get_42(void)
{
return 42;
}
static int32_t get_0(void)
{
return 42;
}
在module_a_tests.c
:
#define UNIT_TEST
#include "module_a.c"
#include "CUnit/Basic.h"
#ifdef UNIT_TEST
int set_up(void)
{
return 0;
}
int tear_down(void)
{
return 0;
}
void run_good_fn(void)
{
CU_ASSERT(42 == get_42());
}
void run_bad_fn(void)
{
CU_ASSERT(0 == get_0());
}
int main(void)
{
CU_pSuite p_suite = NULL;
// Initialize
if (CU_initialize_registry() != CUE_SUCCESS) {
return CU_get_error();
}
p_suite = CU_add_suite("First Suite", set_up, tear_down);
if (p_suite == NULL) {
goto exit;
}
CU_basic_set_mode(CU_BRM_VERBOSE);
// Add tests
if (CU_add_test(p_suite, "Testing run_good_fn", run_good_fn) == NULL) {
goto exit;
}
if (CU_add_test(p_suite, "Testing run_bad_fn", run_bad_fn) == NULL) {
goto exit;
}
// Run the tests
CU_basic_run_tests();
exit:
CU_cleanup_registry();
return CU_get_error();
}
#endif
相关:
答案 0 :(得分:1)
这有点hacky,但是解决这个问题的一种方法是在正确的位置使用#include
作为原始文本替换(在所有静态函数的前向声明之后)。这是一个依赖于位置,但如果您遵循惯例,它很容易理解:
在module_a.c
:
#include <stdio.h>
// Comment this macro in and out to enable/disable unit testing
#define UNIT_TEST
static int32_t get_42(void);
static int32_t get_0(void);
#ifndef UNIT_TEST
int main(void)
{
// Do the real thing
printf("The number 42: %d\n", get_42());
printf("The number 0: %d\n", get_0());
return 0;
}
#else
#include "module_a_tests.c"
#endif
static int32_t get_42(void)
{
return 42;
}
static int32_t get_0(void)
{
return 42;
}
在module_a_tests.c
:
// Add a #include guard
#ifndef MODULE_A_TESTS_C
#define MODULE_A_TESTS_C
#include "CUnit/Basic.h"
int set_up(void)
{
return 0;
}
int tear_down(void)
{
return 0;
}
void run_good_fn(void)
{
CU_ASSERT(42 == get_42());
}
void run_bad_fn(void)
{
CU_ASSERT(0 == get_0());
}
int main(void)
{
CU_pSuite p_suite = NULL;
// Initialize
if (CU_initialize_registry() != CUE_SUCCESS) {
return CU_get_error();
}
p_suite = CU_add_suite("First Suite", set_up, tear_down);
if (p_suite == NULL) {
goto exit;
}
CU_basic_set_mode(CU_BRM_VERBOSE);
// Add tests
if (CU_add_test(p_suite, "run_good_fn", run_good_fn) == NULL) {
goto exit;
}
if (CU_add_test(p_suite, "run_bad_fn", run_bad_fn) == NULL) {
goto exit;
}
// Run the tests
CU_basic_run_tests();
exit:
CU_cleanup_registry();
return CU_get_error();
}
#endif