当我使用ASSERT_TRUE()
提供的时,Gtest
我遇到了以下错误。
return type does not match function type
中带有下划线VS 2010.
。
abc.h
#include "gtest\gtest.h"
class abc {
pubilc:
bool fun();
private:
bool fun1();
};
ABC
bool abc::fun()
{
ASSERT_TRUE(fun1()); // Getting error: return type does not match function type
}
bool abc::fun1()
{
return true; // True or false depanding on operation
}