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_MmTsthStep11.h"
22 #include "TSU_MmTsth11.h"
23 #include "TSU_MmTsthSuite11.h"
28 // Create an instance of this test suite.
29 // NewTSUMmTsthSuite11L is exported at ordinal 1.
30 // This provides the interface to allow the Test Framework
31 // to create instances of this test suite.
32 EXPORT_C CTSUMmTsthSuite11* NewTSUMmTsthSuite11L()
34 CTSUMmTsthSuite11* result = new (ELeave) CTSUMmTsthSuite11;
35 CleanupStack::PushL(result);
37 CleanupStack::Pop(); // result
42 CTSUMmTsthSuite11::~CTSUMmTsthSuite11()
46 _LIT(KTxtVersion,"0.22 (build 09-Sep-2002)");
48 // Get test suite version.
49 TPtrC CTSUMmTsthSuite11::GetVersion() const
54 // Initialiser for test suite.
55 // This creates all the test steps and stores them
57 void CTSUMmTsthSuite11::InitialiseL()
60 // store the name of this test suite
61 iSuiteName = _L("TSU_MMTSTH11");
64 AddTestStepL(RTestMmTsthU1101::NewL());
65 AddTestStepL(RTestMmTsthU1102::NewL());
66 AddTestStepL(RTestMmTsthU1103::NewL());
67 AddTestStepL(RTestMmTsthU1104::NewL());
68 AddTestStepL(RTestMmTsthU1105::NewL());
70 AddTestStepL(RTestMmTsthU1111::NewL());
74 // -------------------------