First public contribution.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Tests for TBaSystemSoundType and TBaSystemSoundInfo class
24 RTest test(_L("T_SSND1"));
27 const TUid KRing1 = {100};
28 const TUid KRing2 = {101};
30 _LIT(KSndNameWarble,"c:\\system\\data\\warble.wav");
31 _LIT(KSndNameMozart,"c:\\system\\data\\mozart.wav");
34 @SYMTestCaseID SYSLIB-BAFL-UT-1707
35 @SYMTestCaseDesc Testing the functions of TBaSystemSoundType and TBaSystemSoundInfo class
36 Tests for TBaSystemSoundInfo::SetTone(),TBaSystemSoundInfo::SetFixedSequenceNumber(),TBaSystemSoundInfo::TBaSystemSoundInfo(TTone) and TBaSystemSoundType::operator==() function
37 @SYMTestPriority Medium
38 @SYMTestActions Compare two system sound types, set the tone and fixed sequence number
39 @SYMTestExpectedResults Test must not fail
45 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1707 Setting sounds "));
47 TBaSystemSoundType sndType1(KSystemSoundRingUID,KRing1);
48 TBaSystemSoundInfo sndInfo1(sndType1,KSndNameWarble());
49 BaSystemSound::SetSoundL(TheFs,sndInfo1);
50 TBaSystemSoundType sndType2(KSystemSoundRingUID,KRing2);
51 TBaSystemSoundInfo sndInfo2(sndType2,KSndNameMozart());
52 BaSystemSound::SetSoundL(TheFs,sndInfo2);
54 TBaSystemSoundType sndType3(KSystemSoundRingUID,KRing1);
55 TBaSystemSoundInfo sndInfo3(sndType3,KSndNameWarble());
56 BaSystemSound::SetSoundL(TheFs,sndInfo3);
58 // Comparing two system sound types
60 test(!(sndType1==sndType2));
61 test(sndType1==sndType3);
65 TBaSystemSoundInfo::TTone tone(120,3400);
66 TBaSystemSoundType sndType4;
67 TBaSystemSoundInfo sndInfo4(sndType4,tone);
69 TBaSystemSoundInfo::TTone tone1(140,3200);
71 sndInfo4.SetFixedSequenceNumber(1);
72 TInt seqNo = sndInfo4.FixedSequenceNumber();
74 sndInfo4.SetTone(tone1);
75 test(!(sndType4==sndType3));
81 CleanupClosePushL(TheFs);
85 CleanupStack::PopAndDestroy(); // TheFs
92 CTrapCleanup* cleanup=CTrapCleanup::New();
98 test.Start(_L("Testing system sounds"));
99 TRAPD(err,DoTestsL());