summaryrefslogtreecommitdiff
path: root/AudioManagerCore/test/MockIAmControlSend.h
diff options
context:
space:
mode:
authorMartin Koch <51775589+mkoch-aditg@users.noreply.github.com>2020-02-10 07:58:37 +0100
committerGitHub <noreply@github.com>2020-02-10 07:58:37 +0100
commit86963abab32af54f7fe1244a727d3340ddeb5450 (patch)
tree752b600be063bd3938e7e8fc7b304ac46f53ef1d /AudioManagerCore/test/MockIAmControlSend.h
parentce501a931e9eeb20013406373156bf70fb007cda (diff)
parentc1e284360ec02b06ccb0a97a00fed05ef0bb2c60 (diff)
downloadaudiomanager-86963abab32af54f7fe1244a727d3340ddeb5450.tar.gz
Merge pull request #49 from GENIVI/PluralProperties
Add plural form of set/get ..SoundProperty() and ..SystemProperty() to allow for simultaneous handling of multible, possibly interrelated attributes.
Diffstat (limited to 'AudioManagerCore/test/MockIAmControlSend.h')
-rw-r--r--AudioManagerCore/test/MockIAmControlSend.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/AudioManagerCore/test/MockIAmControlSend.h b/AudioManagerCore/test/MockIAmControlSend.h
index 36f12a2..9115d00 100644
--- a/AudioManagerCore/test/MockIAmControlSend.h
+++ b/AudioManagerCore/test/MockIAmControlSend.h
@@ -45,10 +45,16 @@ class MockIAmControlSend : public IAmControlSend {
am_Error_e(const am_mainConnectionID_t connectionID));
MOCK_METHOD2(hookUserSetMainSinkSoundProperty,
am_Error_e(const am_sinkID_t sinkID, const am_MainSoundProperty_s& soundProperty));
+ MOCK_METHOD2(hookUserSetMainSinkSoundProperties,
+ am_Error_e(const am_sinkID_t sinkID, const std::vector<am_MainSoundProperty_s > &listSoundProperty));
MOCK_METHOD2(hookUserSetMainSourceSoundProperty,
am_Error_e(const am_sourceID_t sourceID, const am_MainSoundProperty_s& soundProperty));
+ MOCK_METHOD2(hookUserSetMainSourceSoundProperties,
+ am_Error_e(const am_sourceID_t sourceID, const std::vector<am_MainSoundProperty_s > &listSoundProperty));
MOCK_METHOD1(hookUserSetSystemProperty,
am_Error_e(const am_SystemProperty_s& property));
+ MOCK_METHOD1(hookUserSetSystemProperties,
+ am_Error_e(const std::vector<am_SystemProperty_s>& listSystemProperties));
MOCK_METHOD2(hookUserVolumeChange,
am_Error_e(const am_sinkID_t SinkID, const am_mainVolume_t newVolume));
MOCK_METHOD2(hookUserVolumeStep,