Update contrib.
2 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
3 // All rights reserved.
4 // This component and the accompanying materials are made available
5 // under the terms of "Eclipse Public License v1.0"
6 // which accompanies this distribution, and is available
7 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 // Initial Contributors:
10 // Nokia Corporation - initial contribution.
15 // This main DLL entry point for the TSU_MMF_SBCCODEC.dll
22 // Test system includes
23 #include "TSU_MMF_SbcCodecSuite.h"
24 #include "TSU_MMF_SbcCodec.h"
28 * NewTestSuite is exported at ordinal 1
29 * this provides the interface to allow schedule test
30 * to create instances of this test suite
32 EXPORT_C CTestSuite_MMF_SbcCodec* NewTestSuiteL()
34 CTestSuite_MMF_SbcCodec* self = new(ELeave) CTestSuite_MMF_SbcCodec;
35 CleanupStack::PushL(self);
37 CleanupStack::Pop(); // result
44 CTestSuite_MMF_SbcCodec::~CTestSuite_MMF_SbcCodec()
49 * Get Test Suite version
51 TPtrC CTestSuite_MMF_SbcCodec::GetVersion()
53 _LIT(KTxtVersion, "1.0");
58 * This function initialises the test suite
59 * this creates all the test steps and stores them inside CTestSuite_MMF_SbcCodec
61 void CTestSuite_MMF_SbcCodec::InitialiseL()
63 // store the name of this test suite
64 iSuiteName = _L("TSU_MMF_SbcCodec");
67 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_001);
68 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_002);
71 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_010);
72 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_011);
73 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_012);
74 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_013);
75 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_014);
76 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_015);
77 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_016);
80 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_021);
81 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_022);
82 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_023);
83 AddTestStepL(new(ELeave) CTest_MMF_SbcCodec_U_024);