testdev/ite/test/com.nokia.testfw.cmdtool.test/test.resource/unittest/several.bld.inf/multiprj/unittest/inc/ut_CClass2.h
changeset 1 96906a986c3b
equal deleted inserted replaced
0:f1112f777ce9 1:96906a986c3b
       
     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 the License "Symbian Foundation License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.symbianfoundation.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description:
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef UT_CCLASS2_H
       
    19 #define UT_CCLASS2_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <symbianunittest.h>
       
    23 
       
    24 // FORWARD DECLARATIONS
       
    25 class CClass2;
       
    26 
       
    27 // CLASS DECLARATION
       
    28 class UT_CClass2: public CSymbianUnitTest
       
    29 {
       
    30 public: // Constructors and destructor
       
    31 
       
    32 	static UT_CClass2* NewL();
       
    33 	static UT_CClass2* NewLC();
       
    34 	~UT_CClass2();
       
    35 
       
    36 protected: // From CSymbianUnitTest
       
    37 
       
    38 	void SetupL();
       
    39 	void Teardown();
       
    40 
       
    41 protected: // Test functions
       
    42 
       
    43 		void UT_Constructor_CClass2();
       
    44 		void UT_Destructor_CClass2();
       
    45 		void UT_PubFoo1();
       
    46 		void UT_PubFoo2();
       
    47 		void UT_staFoo4();
       
    48 	
       
    49 private: // Constructors
       
    50 
       
    51 	UT_CClass2();
       
    52 	void ConstructL();
       
    53 
       
    54 private: // Data
       
    55 
       
    56 	// The object to be tested as a member variable:
       
    57 	CClass2 *iCClass2;
       
    58 };
       
    59 
       
    60 #endif // UT_CCLASS2_H