gpt4 book ai didi

c - 使用 posix 线程的可测试 C 应用程序

转载 作者:行者123 更新时间:2023-11-30 17:57:08 26 4
gpt4 key购买 nike

我必须编写看起来会做类似事情的代码(当然要复杂得多):

int stop;
int isStopped;

void workerFunction(){
while(!stop){
//...
}
isStopeed = 1;
}

startThread(){
int newThreadPid = pthread_create(..., NULL, workerFunction, NULL);
}

stopThread(){
stop = 1;
}

我的问题是:是否有任何技术可以使此类代码可测试?我不认为编写这样的测试:

startThread();
stopThread();
sleep(1);
ASSERT(isStopped);

是最好的主意。如何在不调用系统函数的情况下测试stopThread()函数?有没有办法模拟pthread_create?

最佳答案

我只知道一种在 C 语言中模拟函数的方法:将函数指针指向可模拟函数,并且仅通过该指针调用它们。对于您的测试,您将调整指针以指向您的模拟函数。但我不知道你是否真的想走那条路......

关于c - 使用 posix 线程的可测试 C 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12991361/

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