imgtools/imgcheck/imagechekunittest/testcode/dbgflagchecktest.h
changeset 0 044383f39525
equal deleted inserted replaced
-1:000000000000 0:044383f39525
       
     1 /*
       
     2 * Copyright (c) 2008-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 "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 * DBGFLAGCHECKTEST class declaration.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef DBGFLAGCHECKTEST_H
       
    21 #define DBGFLAGCHECKTEST_H
       
    22 
       
    23 #ifdef _MSC_VER 
       
    24 	#pragma warning(disable: 4786) 
       
    25 	#pragma warning(disable: 4503) 
       
    26 #endif
       
    27 
       
    28 #include <cppunit/extensions/HelperMacros.h>
       
    29 
       
    30 #include "TestCase.h"
       
    31 #include "TestSuite.h"
       
    32 #include "TestCaller.h"
       
    33 
       
    34 
       
    35 class CTestDbgFlagCheck : public CPPUNIT_NS::TestFixture
       
    36 {
       
    37 	CPPUNIT_TEST_SUITE( CTestDbgFlagCheck );
       
    38 	CPPUNIT_TEST( TestForRomImageforDbganddepVal );
       
    39 	CPPUNIT_TEST( TestForRomImageforAllCheck );
       
    40 	CPPUNIT_TEST( TestForRofsImageforAllCheck );
       
    41 	CPPUNIT_TEST( TestForExtnRofsImageforAllCheck1 );
       
    42 	CPPUNIT_TEST( TestForExtnRofsImageforAllCheck );
       
    43 	CPPUNIT_TEST( TestForRomImageOutputforDbgValTure );
       
    44 	CPPUNIT_TEST( TestForRomImageOutputforDbgValTureXML );
       
    45 	CPPUNIT_TEST( TestForRomImageOutputforDbgValTureXMLlong );
       
    46 	CPPUNIT_TEST( TestForRomImageforDbgandvidVal );
       
    47 	CPPUNIT_TEST( TestForRomImageforDbgandsidVal );
       
    48 	CPPUNIT_TEST_SUITE_END();
       
    49 
       
    50 protected:
       
    51 
       
    52 	void TestForRofsImageOutputforDbg();
       
    53 	void TestForRomImageOutputforDbgValTure();
       
    54 	void TestForRomImageOutputforDbgValTureXML();
       
    55 	void TestForRomImageOutputforDbgValTureXMLlong();
       
    56 	void TestForRomImageforDbgandvidVal();
       
    57 	void TestForRomImageforDbgandsidVal();
       
    58 	void TestForRomImageforDbganddepVal();
       
    59 	void TestForRomImageforAllCheck();
       
    60 	void TestForRofsImageforAllCheck();
       
    61 	void TestForExtnRofsImageforAllCheck();
       
    62 	void TestForExtnRofsImageforAllCheck1();
       
    63 };
       
    64 
       
    65 #endif