I am putting together a project and trying to use google test to compare the result of some functions. The problem is that my functions return double vectors and I can only compare double or integer in google test.
I try to make one:
EXPECT_EQ(resposta, FUNC_lib::litopar(ZZIN,AMASS,MULTPL,frac,dens,checawv));
In which response is a double vector and FUNC_lib returns a double vector as well. However it automatically generates the following error:
a nonstatic member reference must be relative to a specific object.