natfw/natfwunsaf_protocols/tsrc/ut_unsaf_transport/src/ut_cnatfwunsaficmpreceiverdllmain.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_cnatfwicmprecv.h"
       
    23 
       
    24 //  EXTERNAL INCLUDES
       
    25 #include <digia/eunit/CEUnitTestSuite.h>
       
    26 
       
    27 #define _DEBUG_
       
    28 
       
    29 /**
       
    30  * Test suite factory function.
       
    31  */
       
    32 EXPORT_C MEUnitTest* CreateTestSuiteL()
       
    33     {
       
    34     CEUnitTestSuite* rootSuite = CEUnitTestSuite::NewLC(_L(
       
    35         "NATFW UNSAF Icmp receiver unit tests"));
       
    36 
       
    37     rootSuite->AddL( UT_CNATFWUNSAFIcmpRecv::NewLC() );
       
    38     CleanupStack::Pop();
       
    39 
       
    40     CleanupStack::Pop( rootSuite );
       
    41     return rootSuite;
       
    42     }
       
    43 
       
    44 #ifndef __SECURE_API__
       
    45 /**
       
    46  * Standard Symbian DLL entry point function.
       
    47  */
       
    48 GLDEF_C TInt E32Dll(TDllReason)
       
    49     {
       
    50     return KErrNone;
       
    51     }
       
    52 #endif
       
    53 
       
    54 //  END OF FILE