blob: 4cf1170c5eff3d222d81069556864d9ff63c9dfa [file] [log] [blame]
/*
* Copyright (C) 2009 The Android Open Source Project
*
* 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 android.media.cts;
import android.media.AudioManager;
import android.media.ToneGenerator;
import android.test.AndroidTestCase;
import dalvik.annotation.TestLevel;
import dalvik.annotation.TestTargetClass;
import dalvik.annotation.TestTargetNew;
import dalvik.annotation.TestTargets;
@TestTargetClass(ToneGenerator.class)
public class ToneGeneratorTest extends AndroidTestCase {
@TestTargets({
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "ToneGenerator",
args = {int.class, int.class}
),
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "startTone",
args = {int.class}
),
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "stopTone",
args = {}
),
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "release",
args = {}
)
})
public void testSyncGenerate() throws Exception {
ToneGenerator toneGen = new ToneGenerator(AudioManager.STREAM_RING,
ToneGenerator.MAX_VOLUME);
toneGen.startTone(ToneGenerator.TONE_PROP_BEEP2);
final long DELAYED = 1000;
Thread.sleep(DELAYED);
toneGen.stopTone();
toneGen.release();
}
}