mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-16 10:19:47 +02:00
19 lines
582 B
C++
19 lines
582 B
C++
#pragma once
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "../AI/VCAI/ResourceManager.h"
|
|
|
|
class ResourceManager;
|
|
class CPlayerSpecificInfoCallback;
|
|
class VCAI;
|
|
|
|
class ResourceManagerMock : public ResourceManager
|
|
{
|
|
friend class ResourceManagerTest; //everything is public
|
|
public:
|
|
using ResourceManager::ResourceManager;
|
|
//access protected members, TODO: consider other architecture?
|
|
void reserveResoures(const TResources &res, Goals::TSubgoal goal = Goals::TSubgoal()) override;
|
|
bool updateGoal(Goals::TSubgoal goal) override;
|
|
bool notifyGoalCompleted(Goals::TSubgoal goal) override;
|
|
}; |