|
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 * IMAGECHECKERTEST class declaration. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef IMAGECHECKERTEST_H |
|
21 #define IMAGECHECKERTEST_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 CTestImageChecker : public CPPUNIT_NS::TestFixture |
|
36 { |
|
37 CPPUNIT_TEST_SUITE( CTestImageChecker ); |
|
38 CPPUNIT_TEST( TestForHiddenRomRofsImageOutput ); |
|
39 CPPUNIT_TEST( TestForRofsImageOutput ); |
|
40 CPPUNIT_TEST( TestForRomRofsImageOutputXml ); |
|
41 CPPUNIT_TEST( TestForRomRofsImageOutputALL ); |
|
42 CPPUNIT_TEST( TestForRomRofsImageOutputwithVIDVAL ); |
|
43 CPPUNIT_TEST( TestForRomRofsImageOutputwithDepSuppressed ); |
|
44 CPPUNIT_TEST( TestForExtnRomRofsImageOutput ); |
|
45 CPPUNIT_TEST( TestForInvalidImageOutput ); |
|
46 CPPUNIT_TEST( TestForRofsImagewithMissingDeps ); |
|
47 CPPUNIT_TEST( TestForHiddenDLLRomRofsImageOutput ); |
|
48 CPPUNIT_TEST( TestForRomImagewithSIDALLOutput ); |
|
49 CPPUNIT_TEST_SUITE_END(); |
|
50 |
|
51 protected: |
|
52 |
|
53 void TestForRofsImageOutput(); |
|
54 void TestForRomRofsImageOutputXml(); |
|
55 void TestForRomRofsImageOutputALL(); |
|
56 void TestForRomRofsImageOutputwithVIDVAL(); |
|
57 void TestForRomRofsImageOutputwithDepSuppressed(); |
|
58 void TestForExtnRomRofsImageOutput(); |
|
59 void TestForInvalidImageOutput(); |
|
60 void TestForHiddenRomRofsImageOutput(); |
|
61 void TestForRofsImagewithMissingDeps(); |
|
62 void TestForHiddenDLLRomRofsImageOutput(); |
|
63 void TestForRomImagewithSIDALLOutput(); |
|
64 }; |
|
65 |
|
66 #endif |