提交 4f778cbc 编写于 作者: Q qlw

<Audio枚举值覆盖>

Signed-off-by: Nqlw <qinliwen3@huawei.com>
上级 66bcfb14
/*
* Copyright (C) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ohos.acts.multimedia.audio.audioplayer;
import ohos.aafwk.ability.AbilityPackage;
/*
* java MyApplication
*/
public class MyApplication extends AbilityPackage {
@Override
public void onInitialize() {
super.onInitialize();
}
}
......@@ -1069,20 +1069,6 @@ describe('audioManger_audio1', function () {
await sleep(50);
done();
})
/* *
* @tc.number : SUB_AUDIO_MANAGER_DeviceType_004
* @tc.name : DeviceType - WIRED_HEADPHONES
* @tc.desc : DeviceType - WIRED_HEADPHONES
* @tc.size : MEDIUM
* @tc.type : Function
* @tc.level : Level 0
*/
it('SUB_AUDIO_MANAGER_DeviceType_004', 0, async function (done) {
expect(audio.DeviceType.WIRED_HEADPHONES).assertEqual(4);
await sleep(50);
done();
})
/* *
* @tc.number : SUB_AUDIO_MANAGER_DeviceChangeType_001
......
......@@ -4220,28 +4220,28 @@ describe('audioManger_audio2', function () {
/* *
* @tc.number : SUB_AUDIO_MANAGER_TnterruptActionType_001
* @tc.name : TnterruptActionType - TYPE_ACTIVATED
* @tc.desc : TnterruptActionType - TYPE_ACTIVATED
* @tc.name : InterruptActionType - TYPE_ACTIVATED
* @tc.desc : InterruptActionType - TYPE_ACTIVATED
* @tc.size : MEDIUM
* @tc.type : Function
* @tc.level : Level 0
*/
it('SUB_AUDIO_MANAGER_TnterruptActionType_001', 0, async function (done) {
expect(audio.TnterruptActionType.TYPE_ACTIVATED).assertEqual(0);
expect(audio.InterruptActionType.TYPE_ACTIVATED).assertEqual(0);
await sleep(50);
done();
})
/* *
* @tc.number : SUB_AUDIO_MANAGER_TnterruptActionType_002
* @tc.name : TnterruptActionType - TYPE_INTERRUPT
* @tc.desc : TnterruptActionType - TYPE_INTERRUPT
* @tc.name : InterruptActionType - TYPE_INTERRUPT
* @tc.desc : InterruptActionType - TYPE_INTERRUPT
* @tc.size : MEDIUM
* @tc.type : Function
* @tc.level : Level 0
*/
it('SUB_AUDIO_MANAGER_TnterruptActionType_002', 0, async function (done) {
expect(audio.TnterruptActionType.TYPE_INTERRUPT).assertEqual(1);
expect(audio.InterruptActionType.TYPE_INTERRUPT).assertEqual(1);
await sleep(50);
done();
})
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册