Lines Matching defs:desc
92 * @tc.desc: Verify the EffectControlEffectProcess function when the input parameter is invalid.
108 * @tc.desc: Verify the EffectControlEffectProcess function.
123 * @tc.desc: Verify the EffectControlSendCommand function when the input parameter is invalid.
156 * @tc.desc: Verify the EffectControlSendCommand function when cmdId is AUDIO_EFFECT_COMMAND_INIT_CONTOLLER.
173 * @tc.desc: Verify the EffectControlSendCommand function when cmdId is AUDIO_EFFECT_COMMAND_SET_CONFIG.
190 * @tc.desc: Verify the EffectControlSendCommand function when cmdId is AUDIO_EFFECT_COMMAND_GET_CONFIG.
207 * @tc.desc: Verify the EffectControlSendCommand function when cmdId is AUDIO_EFFECT_COMMAND_RESET.
224 * @tc.desc: Verify the EffectControlSendCommand function when cmdId is AUDIO_EFFECT_COMMAND_ENABLE.
241 * @tc.desc: Verify the EffectControlSendCommand function when cmdId is AUDIO_EFFECT_COMMAND_DISABLE.
257 * @tc.desc: Verify the EffectControlSendCommand function when cmdId is AUDIO_EFFECT_COMMAND_SET_PARAM.
274 * @tc.desc: Verify the EffectControlSendCommand function when cmdId is AUDIO_EFFECT_COMMAND_GET_PARAM.
291 * @tc.desc: Verify the EffectGetOwnDescriptor function when the input parameter is invalid.
297 struct EffectControllerDescriptor desc;
299 EXPECT_EQ(HDF_ERR_INVALID_OBJECT, controller_->GetEffectDescriptor(nullptr, &desc));
305 * @tc.desc: Verify the EffectGetOwnDescriptor function.
311 struct EffectControllerDescriptor desc;
312 int32_t ret = controller_->GetEffectDescriptor(controller_, &desc);
314 EXPECT_STREQ(desc.effectId, effectId_);
315 EXPECT_STREQ(desc.effectName, "mock_effect");
316 EXPECT_STREQ(desc.libName, libName_);
317 EXPECT_STREQ(desc.supplier, "mock");
318 OHOS::Audio::EffectControllerReleaseDesc(&desc);
323 * @tc.desc: Verify the EffectControlEffectReverse function when the input parameter is invalid.
339 * @tc.desc: Verify the EffectControlEffectReverse function.