Lei YU | 7f2a215 | 2019-09-16 16:50:18 +0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include "association_interface.hpp" |
| 4 | |
| 5 | #include <gmock/gmock.h> |
| 6 | |
| 7 | class MockedAssociationInterface : public AssociationInterface |
| 8 | { |
| 9 | public: |
| 10 | virtual ~MockedAssociationInterface() = default; |
| 11 | |
| 12 | MOCK_METHOD1(createActiveAssociation, void(const std::string& path)); |
| 13 | MOCK_METHOD1(addFunctionalAssociation, void(const std::string& path)); |
Lei YU | a8b966f | 2020-03-18 10:32:24 +0800 | [diff] [blame] | 14 | MOCK_METHOD1(addUpdateableAssociation, void(const std::string& path)); |
Lei YU | 7f2a215 | 2019-09-16 16:50:18 +0800 | [diff] [blame] | 15 | MOCK_METHOD1(removeAssociation, void(const std::string& path)); |
| 16 | }; |