omxil/mmilapi/unittest/src/tsu_milif_testsuite.h
changeset 0 40261b775718
child 16 eedf2dcd43c6
equal deleted inserted replaced
-1:000000000000 0:40261b775718
       
     1 // Copyright (c) 2008-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 // This file contains the test suite class declaration for MILIF unit tests.
       
    15 // 
       
    16 //
       
    17 
       
    18 #ifndef TSU_MILIF_TESTSUITE_H
       
    19 #define TSU_MILIF_TESTSUITE_H
       
    20 
       
    21 #include <e32base.h>
       
    22 #include <testframework.h>
       
    23 
       
    24 /*
       
    25  *
       
    26  * CTestSuiteMILIF
       
    27  * - Test suite class
       
    28  *
       
    29  */
       
    30 class CTestSuiteMILIF : public CTestSuite
       
    31 	{
       
    32 public:
       
    33 	virtual ~CTestSuiteMILIF();
       
    34 
       
    35 	// From CTestSuite
       
    36 	void InitialiseL();
       
    37 	TPtrC GetVersion() const;
       
    38 
       
    39 	IMPORT_C static CTestSuiteMILIF* NewTestSuiteL();
       
    40 
       
    41 private:
       
    42 	CTestSuiteMILIF();
       
    43 	};
       
    44 
       
    45 #endif // TSU_MILIF_TESTSUITE_H