我正在编写单元测试,并想知道如何使用Cmockery测试函数指针。
A.C
void (*FunctionPtr)(void) = &funcA;
void funcA()
{
// calls func B
funcB();
}
TestA.c
void Test_A( void ** state )
{
// test for FunA; working as expected
}
void Test_FunctionPtr( void** state )
{
// how to check here that FunctionPtr holds memory location of funcA?
// I tried something like below:
assert_memory_equal( FunctionPtr, funcA(), sizeof( funcA() ) );
}
在运行时我遇到错误,我不知道如何解决这个问题。可能是我使用错误的API断言但不知道要拨打哪一个。
以下是我的错误:
error during runtime:
Test_FunctionPtr: Starting test
No entries for symbol funcB.
答案 0 :(得分:2)
funcA()
调用该函数。你想要一个指向函数的指针,它是funcA
或&funcA
(对你使用的那个函数没有区别:read here)。
您还想将FunctionPtr
中保存的值与funcA
的地址进行比较。您不希望将FunctionPtr
指向的内存与函数进行比较。
因此,我会使用assert_memory_equal( FunctionPtr, funcA(), sizeof( funcA() ) );
assert(FunctionPtr == funcA);
您在评论中写道,您现在正在使用assert_int_equal
。请注意,这两个值都不是int
,因此如果宏在错误情况下使用带有printf
(或类似)的%d
,则会调用未定义的行为。