testexecfw/symbianunittestfw/sutfw/sutfwcore/sutfwframework/tsrc/src/ut_symbianunittestother.cpp
changeset 1 bbd31066657e
equal deleted inserted replaced
0:3e07fef1e154 1:bbd31066657e
       
     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 #include "ut_symbianunittestother.h"
       
    19 #include "symbianunittestfailure.h"
       
    20 #include <symbianunittestmacros.h>
       
    21 
       
    22 // ---------------------------------------------------------------------------
       
    23 //
       
    24 // ---------------------------------------------------------------------------
       
    25 //
       
    26 UT_CSymbianUnitTestOther* UT_CSymbianUnitTestOther::NewL()
       
    27     {
       
    28     UT_CSymbianUnitTestOther* self = UT_CSymbianUnitTestOther::NewLC(); 
       
    29     CleanupStack::Pop( self );
       
    30     return self;
       
    31     }
       
    32 
       
    33 // ---------------------------------------------------------------------------
       
    34 //
       
    35 // ---------------------------------------------------------------------------
       
    36 //
       
    37 UT_CSymbianUnitTestOther* UT_CSymbianUnitTestOther::NewLC()
       
    38     {
       
    39     UT_CSymbianUnitTestOther* self = 
       
    40         new( ELeave )UT_CSymbianUnitTestOther();
       
    41     CleanupStack::PushL( self );
       
    42     self->ConstructL();
       
    43     return self;
       
    44     }
       
    45 
       
    46 // ---------------------------------------------------------------------------
       
    47 //
       
    48 // ---------------------------------------------------------------------------
       
    49 //
       
    50 UT_CSymbianUnitTestOther::UT_CSymbianUnitTestOther()
       
    51     {
       
    52     }
       
    53 
       
    54 // ---------------------------------------------------------------------------
       
    55 //
       
    56 // ---------------------------------------------------------------------------
       
    57 //
       
    58 void UT_CSymbianUnitTestOther::ConstructL()
       
    59     {
       
    60     BASE_CONSTRUCT
       
    61     
       
    62     DEFINE_TEST_CLASS( UT_CSymbianUnitTestOther )
       
    63     
       
    64     ADD_SUT( UT_GettersL )
       
    65     }
       
    66 
       
    67 // ---------------------------------------------------------------------------
       
    68 //
       
    69 // ---------------------------------------------------------------------------
       
    70 //
       
    71 UT_CSymbianUnitTestOther::~UT_CSymbianUnitTestOther()
       
    72     {
       
    73     }
       
    74 
       
    75 // ---------------------------------------------------------------------------
       
    76 //
       
    77 // ---------------------------------------------------------------------------
       
    78 //
       
    79 void UT_CSymbianUnitTestOther::UT_GettersL()
       
    80     {    
       
    81     }