multimediacommscontroller/mmccg711payloadformat/tsrc/ut_g711payloadformat/src/UT_CG711PayloadFormatDllMain.cpp
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     1 /*
       
     2 * Copyright (c) 2004 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 
       
    19 
       
    20 
       
    21 //  CLASS HEADER
       
    22 #include "UT_CG711PayloadFormatRead.h"
       
    23 #include "UT_CG711PayloadFormatWrite.h"
       
    24 #include "UT_TStreamDecoder.h"
       
    25 #include "UT_TStreamEncoder.h"
       
    26 
       
    27 //  EXTERNAL INCLUDES
       
    28 #include <digia/eunit/CEUnitTestSuite.h>
       
    29 
       
    30 
       
    31 /**
       
    32  * Test suite factory function.
       
    33  */
       
    34 EXPORT_C MEUnitTest* CreateTestSuiteL()
       
    35     {
       
    36 	//return UT_CAmrCommonUtility::NewL();
       
    37     CEUnitTestSuite* rootSuite = CEUnitTestSuite::NewLC(_L("Wizard generated"));
       
    38 
       
    39     rootSuite->AddL(  UT_CG711PayloadFormatRead::NewLC() );
       
    40     CleanupStack::Pop();
       
    41 
       
    42     rootSuite->AddL(  UT_CG711PayloadFormatWrite::NewLC() );
       
    43     CleanupStack::Pop();
       
    44     
       
    45     rootSuite->AddL( UT_TStreamDecoder::NewLC() );
       
    46     CleanupStack::Pop();
       
    47 
       
    48     rootSuite->AddL( UT_TStreamEncoder::NewLC() );
       
    49     CleanupStack::Pop();    
       
    50     
       
    51     CleanupStack::Pop(); // rootSuite
       
    52     
       
    53 	return rootSuite;
       
    54     }
       
    55 
       
    56 //  END OF FILE