Update contrib.
1 // Copyright (c) 2002-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.
19 // Test system includes
20 #include <testframework.h>
21 #include "TSU_MmTsth01.h"
22 #include "TSU_MmTsthSuite01.h"
27 // Create an instance of this test suite.
28 // NewTSUMmTsthSuite01L is exported at ordinal 1.
29 // This provides the interface to allow the Test Framework
30 // to create instances of this test suite.
31 EXPORT_C CTSUMmTsthSuite01* NewTSUMmTsthSuite01L()
33 CTSUMmTsthSuite01* result = new (ELeave) CTSUMmTsthSuite01;
34 CleanupStack::PushL(result);
36 CleanupStack::Pop(); // result
41 CTSUMmTsthSuite01::~CTSUMmTsthSuite01()
45 _LIT(KTxtVersion,"0.22 (build 09-Sep-2002)");
47 // Get test suite version.
48 TPtrC CTSUMmTsthSuite01::GetVersion() const
53 // Initialiser for test suite.
54 // This creates all the test steps and stores them
56 void CTSUMmTsthSuite01::InitialiseL()
59 // store the name of this test suite
60 iSuiteName = _L("TSU_MMTSTH01");
63 AddTestStepL(RTestMmTsthU0101::NewL());
64 AddTestStepL(RTestMmTsthU0102::NewL());
65 AddTestStepL(RTestMmTsthU0103::NewL());
66 AddTestStepL(RTestMmTsthU0104::NewL());
67 AddTestStepL(RTestMmTsthU0111::NewL());
68 AddTestStepL(RTestStepDummy::NewL());
69 AddTestStepL(RPanicTestStepDummy::NewL());