summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/test/routingInterface/MockRoutingInterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'AudioManagerDaemon/test/routingInterface/MockRoutingInterface.h')
-rw-r--r--AudioManagerDaemon/test/routingInterface/MockRoutingInterface.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/AudioManagerDaemon/test/routingInterface/MockRoutingInterface.h b/AudioManagerDaemon/test/routingInterface/MockRoutingInterface.h
index 6c93507..2c21fe6 100644
--- a/AudioManagerDaemon/test/routingInterface/MockRoutingInterface.h
+++ b/AudioManagerDaemon/test/routingInterface/MockRoutingInterface.h
@@ -34,12 +34,12 @@ namespace am {
class MockRoutingSendInterface : public RoutingSendInterface {
public:
- MOCK_METHOD1(startupRoutingInterface,
- void(RoutingReceiveInterface* routingreceiveinterface));
- MOCK_METHOD0(routingInterfacesReady,
- void());
- MOCK_METHOD0(routingInterfacesRundown,
- void());
+ MOCK_METHOD1(startupInterface,
+ am_Error_e(RoutingReceiveInterface* routingreceiveinterface));
+ MOCK_METHOD1(setRoutingReady,
+ void(const uint16_t handle));
+ MOCK_METHOD1(setRoutingRundown,
+ void(const uint16_t handle));
MOCK_METHOD1(asyncAbort,
am_Error_e(const am_Handle_s handle));
MOCK_METHOD5(asyncConnect,
@@ -66,9 +66,10 @@ class MockRoutingSendInterface : public RoutingSendInterface {
am_Error_e(const am_domainID_t domainID, const am_DomainState_e domainState));
MOCK_CONST_METHOD1(returnBusName,
am_Error_e(std::string& BusName));
- MOCK_CONST_METHOD0(getInterfaceVersion,
- uint16_t());
+ MOCK_CONST_METHOD1(getInterfaceVersion,
+ void(std::string& version));
};
+
} // namespace am