gpt4 book ai didi

c - 如何在 C 中模拟同一 UUT 中的函数

转载 作者:行者123 更新时间:2023-11-30 16:54:38 27 4
gpt4 key购买 nike

我正在学习使用 Ceedling 进行单元测试,并使用 CMock 进行模拟,在现有的嵌入式 C 代码库(我可以调整以适应)上。

我遇到过这样的情况:一个单元中的一个函数调用同一单元中的第二个函数。

int foo_a(int r) 
{
/* foo_a work */
/* do not wish to test this function just to test foo_b. */
}

int foo_b(int i) /* function to test */
{
/* foo_b work */
if (some_condition)
foo_a(k); /* need to test if foo_a() is called or not. */
}

我不想将 foo_a() 作为 foo_b() 测试的一部分进行测试。如何模拟 foo_a() 以便我仍然可以测试它是否被调用,但无需测试 foo_a() 函数本身?

最佳答案

如果不修改源代码,就无法做到这一点。

考虑将函数分成两个单独的编译单元。

或者,在要替换的函数周围添加 #ifndef TEST

关于c - 如何在 C 中模拟同一 UUT 中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40485835/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com