classicui_plat/number_grouping_api/tsrc/src/testdomnumbergrouping.cpp
changeset 37 89c890c70182
parent 34 6b5204869ed5
child 45 667edd0b8678
--- a/classicui_plat/number_grouping_api/tsrc/src/testdomnumbergrouping.cpp	Fri Jun 25 18:53:58 2010 +0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,148 +0,0 @@
-/*
-* Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:  Test number_grouping_api
-*
-*/
-
-
-
-/*
- *  INCLUDE FILES
- */
-#include <stiftestinterface.h>
-#include <settingserverclient.h>
-#include <e32property.h>
-
-#include "testdomnumbergrouping.h"
-
-_LIT( KModuleName, "testdomnumbergrouping.dll" );
-
-// ============================ MEMBER FUNCTIONS ===============================
-
-// -----------------------------------------------------------------------------
-// CTestDOMNUMBERGROUPING::CTestDOMNUMBERGROUPING
-// C++ default constructor can NOT contain any code, that
-// might leave.
-// -----------------------------------------------------------------------------
-//
-CTestDOMNUMBERGROUPING::CTestDOMNUMBERGROUPING( CTestModuleIf& aTestModuleIf ):
-    CScriptBase( aTestModuleIf )
-    {
-    }
-
-// -----------------------------------------------------------------------------
-// CTestDOMNUMBERGROUPING::ConstructL
-// Symbian 2nd phase constructor can leave.
-// -----------------------------------------------------------------------------
-//
-void CTestDOMNUMBERGROUPING::ConstructL()
-    {
-    RSettingServer settingServer;
-    CleanupClosePushL( settingServer );
-    TInt ret = settingServer.Connect();
-    if(ret != KErrNone)
-        {
-        User::Leave(ret);
-        }
-    TLoggerSettings loggerSettings; 
-    ret = settingServer.GetLoggerSettings(loggerSettings);
-    if(ret != KErrNone)
-        {
-        User::Leave(ret);
-        } 
-    settingServer.Close();
-    CleanupStack::PopAndDestroy( &settingServer );
-
-    TFileName logFileName;
-    
-    if(loggerSettings.iAddTestCaseTitle)
-        {
-        TName title;
-        TestModuleIf().GetTestCaseTitleL(title);
-        logFileName.Format(KtestdomnumbergroupingLogFileWithTitle, &title);
-        }
-    else
-        {
-        logFileName.Copy(KtestdomnumbergroupingLogFile);
-        }
-
-    iLog = CStifLogger::NewL( KtestdomnumbergroupingLogPath, 
-                          logFileName,
-                          CStifLogger::ETxt,
-                          CStifLogger::EFile,
-                          EFalse );
-    
-    SendTestClassVersion();
-    }
-
-// -----------------------------------------------------------------------------
-// CTestDOMNUMBERGROUPING::NewL
-// Two-phased constructor.
-// -----------------------------------------------------------------------------
-//
-CTestDOMNUMBERGROUPING* CTestDOMNUMBERGROUPING::NewL( CTestModuleIf& aTestModuleIf )
-    {
-    CTestDOMNUMBERGROUPING* self = new( ELeave ) CTestDOMNUMBERGROUPING( aTestModuleIf );
-
-    CleanupStack::PushL( self );
-    self->ConstructL();
-    CleanupStack::Pop( self );
-
-    return self;
-
-    }
-
-// Destructor
-CTestDOMNUMBERGROUPING::~CTestDOMNUMBERGROUPING()
-    { 
-
-    Delete();
-
-    delete iLog; 
-
-    }
-
-//-----------------------------------------------------------------------------
-// CTestDOMNUMBERGROUPING::SendTestClassVersion
-// Method used to send version of test class
-//-----------------------------------------------------------------------------
-//
-void CTestDOMNUMBERGROUPING::SendTestClassVersion()
-    {
-    TVersion moduleVersion;
-    moduleVersion.iMajor = TEST_CLASS_VERSION_MAJOR;
-    moduleVersion.iMinor = TEST_CLASS_VERSION_MINOR;
-    moduleVersion.iBuild = TEST_CLASS_VERSION_BUILD;
-
-    TFileName moduleName;
-    moduleName = KModuleName;
-
-    TBool newVersionOfMethod = ETrue;
-    TestModuleIf().SendTestModuleVersion( moduleVersion, moduleName, 
-        newVersionOfMethod );
-    }
-
-// ========================== OTHER EXPORTED FUNCTIONS =========================
-
-// -----------------------------------------------------------------------------
-// LibEntryL is a polymorphic Dll entry point.
-// Returns: CScriptBase: New CScriptBase derived object
-// -----------------------------------------------------------------------------
-//
-EXPORT_C CScriptBase* LibEntryL( 
-    CTestModuleIf& aTestModuleIf ) 
-    {
-    return ( CScriptBase* ) CTestDOMNUMBERGROUPING::NewL( aTestModuleIf );
-    }
-//  End of File