如何实现谷歌模拟来模拟C fopen函数

时间:2016-10-17 18:52:13

标签: c unit-testing raspberry-pi beagleboneblack

我正在使用google test / mock编写嵌入式C代码的单元测试。 C函数代码如下所示。

int readGPIOSysfs(int ioport){
  ...
  FILE *f = fopen("/sys/class/gpio/export", "w");
  ..
  fclose(f);
}

如何在fopen函数调用上实现google模拟?

提前谢谢。

0 个答案:

没有答案