ximpfw/tsrc/src/t_eunittemplate/t_eunittemplate.h
changeset 0 e6b17d312c8b
equal deleted inserted replaced
-1:000000000000 0:e6b17d312c8b
       
     1 /*
       
     2 * Copyright (c) 2006 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: XIMP Framework Test Code 
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef T_EUNITTEMPLATE_H
       
    19 #define T_EUNITTEMPLATE_H
       
    20 
       
    21 #include <ceunittestsuiteclass.h>
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 
       
    27 /**
       
    28  * XIMP Framework Eunit tests.
       
    29  *
       
    30  * TODO: Add test description here.
       
    31  *
       
    32  * @since S60 v4.0
       
    33  */
       
    34 class T_EunitTemplate : public CEUnitTestSuiteClass
       
    35     {
       
    36 
       
    37 public:
       
    38 
       
    39     /**  ?description */
       
    40     //enum ?declaration
       
    41 
       
    42     /**  ?description */
       
    43     //typedef ?declaration
       
    44 
       
    45     static T_EunitTemplate* NewL();
       
    46     virtual ~T_EunitTemplate();
       
    47 
       
    48 private:
       
    49 
       
    50     T_EunitTemplate();
       
    51     void ConstructL();
       
    52 
       
    53 
       
    54 
       
    55 private:    // Test case functions
       
    56 
       
    57     void Setup_L();
       
    58     void Teardown();
       
    59 
       
    60     void TestSomething_L();
       
    61 
       
    62 
       
    63 
       
    64 private:    // Test helpers
       
    65 
       
    66 
       
    67 
       
    68 
       
    69 
       
    70 private: // Test data
       
    71 
       
    72 
       
    73     /**
       
    74      * Eunit test case table declaration.
       
    75      */
       
    76     EUNIT_DECLARE_TEST_TABLE;
       
    77 
       
    78 
       
    79     /**
       
    80      *
       
    81      * Own. / Not own.
       
    82      */
       
    83     //?type* ?member_name;
       
    84 
       
    85     };
       
    86 
       
    87 
       
    88 #endif      //  T_EUNITTEMPLATE_H
       
    89 
       
    90 
       
    91 
       
    92 // end of file
       
    93 
       
    94 
       
    95 
       
    96