retvalue by reference require temp variable
This addon provides MockObjects for CxxTest.
Brought to you by:
comm644
class Inteface {
public:
virtual QString& getValue() = 0
}
must be generated:
...
QString getValue_retvalue;
virtual QString& getValue()
{
return getValue_retvalue = CXXMOCK_GET(QString )
}