如何为包含构造函数和具有依赖性的代码编写gtest

时间:2017-09-20 11:43:34

标签: c++ constructor googletest gmock

我有一个c ++代码,因为我需要编写gtest。 我试着通过使用不同的建议来写这么多天但是还没有完全能够写作和理解,因为我是gtest的初学者。

如果我获得gtest

.h代码,将会很有帮助

这是我的RTIParticipant.h代码

#include <string>
using namespace std;
class DDSDomainParticipant;
class RTIParticipant
{
        public:
                DDSDomainParticipant* getDDSParticipant();
                int getDomainID();
                ~RTIParticipant();
                RTIParticipant(string name="", int domainID=0, string qosLibName="", string qosProfileName="");
        private:
                string _name;
                int _domainID;
                DDSDomainParticipant* _ddsDomainParticipant;
};

0 个答案:

没有答案