remotemgmt_plat/syncml_ds_customization_api/tsrc/devinfextmgmtinterface/dllmain.cpp
branchRCL_3
changeset 25 b183ec05bd8c
equal deleted inserted replaced
24:13d7c31c74e0 25:b183ec05bd8c
       
     1 /*
       
     2 * Copyright (c) 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".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  DllMain file for device info extension management
       
    15 *  interface unit tests.
       
    16 *
       
    17 */
       
    18 
       
    19 //  EXTERNAL INCLUDES
       
    20 #include <CEUnitTestSuite.h>
       
    21 #include "devinfextmgmtif_test.h"
       
    22 
       
    23 /**
       
    24 * UT_nsmldscontactsdataprovider.dll test suite factory function.
       
    25 */
       
    26 EXPORT_C MEUnitTest* CreateTestSuiteL()
       
    27     {
       
    28     CEUnitTestSuite* rootSuite = 
       
    29         CEUnitTestSuite::NewLC( _L( "Unit test for DevInfo extension mgmt interface" ) );
       
    30 
       
    31     MEUnitTest* extMgmtIfSuite = CDevInfExtMgmtIf_Test::NewL();
       
    32     CleanupStack::PushL( extMgmtIfSuite );
       
    33     rootSuite->AddL( extMgmtIfSuite );
       
    34     CleanupStack::Pop( extMgmtIfSuite );
       
    35 
       
    36     CleanupStack::Pop( rootSuite );
       
    37 
       
    38     return rootSuite;
       
    39     }