xml/xmlfw/test/rtest/tsrc/t_componenttests.h
changeset 0 e35f40988205
equal deleted inserted replaced
-1:000000000000 0:e35f40988205
       
     1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __T_COMPONENTTESTS_H__
       
    17 #define __T_COMPONENTTESTS_H__
       
    18 
       
    19 #include <stringpool.h>
       
    20 
       
    21 
       
    22 //
       
    23 // The other classes are tested as part of the FrameworkTests, 
       
    24 // or can only be tested when they are derived from, i.e. the Parser.
       
    25 //
       
    26 
       
    27 class CComponentTests : public CBase
       
    28 	{
       
    29 public:
       
    30 	static CComponentTests* NewL();
       
    31 	virtual ~CComponentTests();
       
    32 
       
    33 	// The tests to run
       
    34 
       
    35 	// Component tests
       
    36 	void Test1L();
       
    37 	void Test2L();
       
    38 	void Test3L();
       
    39 	void Test4L();
       
    40 	void Test5L();
       
    41 	void Test6L();
       
    42 	void Test7L();
       
    43 	void Test8L();
       
    44 	void Test9L();
       
    45 	void Test10L();
       
    46 	void Test11L();
       
    47 	void Test12L();
       
    48 	
       
    49 private:
       
    50 	CComponentTests();
       
    51 
       
    52 private:
       
    53 
       
    54 	RStringPool iStringPool;
       
    55 	};
       
    56 
       
    57 #endif // __T_COMPONENTTESTS_H__