diff --git a/test/mock/mock_Creature.h b/test/mock/mock_Creature.h index 7df167aec..6dacd4815 100644 --- a/test/mock/mock_Creature.h +++ b/test/mock/mock_Creature.h @@ -27,6 +27,7 @@ public: MOCK_CONST_METHOD0(getIndex, int32_t()); MOCK_CONST_METHOD0(getIconIndex, int32_t()); MOCK_CONST_METHOD0(getJsonKey, std::string ()); + MOCK_CONST_METHOD0(getModScope, std::string ()); MOCK_CONST_METHOD0(getName, const std::string &()); MOCK_CONST_METHOD0(getId, CreatureID()); MOCK_CONST_METHOD0(getBonusBearer, const IBonusBearer *()); diff --git a/test/mock/mock_spells_Spell.h b/test/mock/mock_spells_Spell.h index ccd33d129..de03559eb 100644 --- a/test/mock/mock_spells_Spell.h +++ b/test/mock/mock_spells_Spell.h @@ -27,6 +27,7 @@ public: MOCK_CONST_METHOD0(getIndex, int32_t()); MOCK_CONST_METHOD0(getIconIndex, int32_t()); MOCK_CONST_METHOD0(getJsonKey, std::string ()); + MOCK_CONST_METHOD0(getModScope, std::string ()); MOCK_CONST_METHOD0(getName, const std::string &()); MOCK_CONST_METHOD0(getId, SpellID()); MOCK_CONST_METHOD0(getLevel, int32_t());