|
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 * TESTE32INPUTNOCHECK.H |
|
16 * TESTE32INPUTNOCHECK class declaration. |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 #ifndef E32INPUTNOCHECKTEST_H |
|
22 #define E32INPUTNOCHECKTEST_H |
|
23 |
|
24 #ifdef _MSC_VER |
|
25 #pragma warning(disable: 4786) |
|
26 #pragma warning(disable: 4503) |
|
27 #endif |
|
28 |
|
29 #include <cppunit/extensions/HelperMacros.h> |
|
30 |
|
31 #include "TestCase.h" |
|
32 #include "TestSuite.h" |
|
33 #include "TestCaller.h" |
|
34 |
|
35 |
|
36 class CTestE32InputNoCheck : public CPPUNIT_NS::TestFixture |
|
37 { |
|
38 CPPUNIT_TEST_SUITE( CTestE32InputNoCheck ); |
|
39 CPPUNIT_TEST( TestForRofsImageOutputforE32inputDbg ); |
|
40 CPPUNIT_TEST( TestForRofsImageOutputforE32inputDbgTrue ); |
|
41 CPPUNIT_TEST( TestForRofsImageOutputforE32inputDbgTrueandVID ); |
|
42 CPPUNIT_TEST( TestForRofsImageOutputforE32inputDbgTrueandVIDSID ); |
|
43 CPPUNIT_TEST( TestForRofsImageOutputforE32inputandNoCheck ); |
|
44 CPPUNIT_TEST( TestForRofsImageOutputforE32inputandNoCheckforAll ); |
|
45 CPPUNIT_TEST( TestForRofsImageOutputforE32inputandNoCheckforAll1 ); |
|
46 CPPUNIT_TEST( TestForRofsImageOutputforSIDAlias ); |
|
47 CPPUNIT_TEST( TestE32fileDbgFlag ); |
|
48 CPPUNIT_TEST( TestEmptyDirectory ); |
|
49 CPPUNIT_TEST( TestDirectoryforALL ); |
|
50 CPPUNIT_TEST( TestForInValidE32Input ); |
|
51 CPPUNIT_TEST_SUITE_END(); |
|
52 |
|
53 protected: |
|
54 |
|
55 void TestForRofsImageOutputforE32inputDbg(); |
|
56 void TestForRofsImageOutputforE32inputDbgTrue(); |
|
57 void TestForRofsImageOutputforE32inputDbgTrueandVID(); |
|
58 void TestForRofsImageOutputforE32inputDbgTrueandVIDSID(); |
|
59 void TestForRofsImageOutputforE32inputandNoCheck(); |
|
60 void TestForRofsImageOutputforE32inputandNoCheckforAll(); |
|
61 void TestForRofsImageOutputforE32inputandNoCheckforAll1(); |
|
62 void TestForRofsImageOutputforSIDAlias(); |
|
63 void TestE32fileDbgFlag(); |
|
64 void TestEmptyDirectory(); |
|
65 void TestDirectoryforALL(); |
|
66 void TestForInValidE32Input(); |
|
67 }; |
|
68 |
|
69 #endif |