mmshplugins/mmshwpadapterplugin/tsrc/ut_wpadapterplugin/src/ut_muswpadapterdllmain.cpp
changeset 0 f0cf47e981f9
equal deleted inserted replaced
-1:000000000000 0:f0cf47e981f9
       
     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:
       
    15 *
       
    16 */
       
    17 
       
    18 //  USER INCLUDES
       
    19 #include "ut_muswpadapter.h"
       
    20 #include "ut_muswpitem.h"
       
    21 
       
    22 //  SYSTEM INCLUDES
       
    23 #include <digia/eunit/ceunittestsuite.h>
       
    24 
       
    25 
       
    26 // -----------------------------------------------------------------------------
       
    27 // Test suite factory function.
       
    28 // -----------------------------------------------------------------------------
       
    29 //
       
    30 EXPORT_C MEUnitTest* CreateTestSuiteL()
       
    31     {
       
    32     
       
    33     CEUnitTestSuite* rootSuite = CEUnitTestSuite::NewLC( _L( "Mush WPAdapterplugin" ) );
       
    34 
       
    35     rootSuite->AddL( UT_CMusWpAdapter::NewLC() );
       
    36     CleanupStack::Pop();
       
    37     
       
    38     rootSuite->AddL( UT_CMusWpItem::NewLC() );
       
    39     CleanupStack::Pop();
       
    40     
       
    41     CleanupStack::Pop( rootSuite );
       
    42 
       
    43     return rootSuite;
       
    44     }