|
1 // Copyright (c) 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 /** |
|
17 @file texmlparser2step.h |
|
18 @internalTechnology |
|
19 */ |
|
20 |
|
21 #ifndef _TE_XMLPARSER2STEP_H_ |
|
22 #define _TE_XMLPARSER2STEP_H_ |
|
23 |
|
24 #include <test/testexecutestepbase.h> |
|
25 |
|
26 /** |
|
27 * Test Steps |
|
28 */ |
|
29 _LIT(KXmlParser2SetContentSink, "XmlParser2SetContentSink"); |
|
30 _LIT(KXmlParser2OOMTests, "XmlParser2OOMTests"); |
|
31 _LIT(KXmlParser2OOMTests2, "XmlParser2OOMTests2"); |
|
32 _LIT(KXmlParser2OOMTests3, "XmlParser2OOMTests3"); |
|
33 _LIT(KXmlParser2OOMTests4, "XmlParser2OOMTests4"); |
|
34 /** |
|
35 * Class to test XML SAX parser |
|
36 */ |
|
37 class CXmlParser2Step : public CTestStep |
|
38 { |
|
39 public: |
|
40 CXmlParser2Step(const TDesC& aStepName); |
|
41 virtual TVerdict doTestStepL(void); |
|
42 TVerdict TestKXmlParser2SetContentSink(); |
|
43 TVerdict TestKXmlParser2OOMTests(); |
|
44 TVerdict TestKXmlParser2OOMTests2(); |
|
45 TVerdict TestKXmlParser2OOMTests3(); |
|
46 TVerdict TestKXmlParser2OOMTests4(); |
|
47 }; |
|
48 #endif /*TE_XMLPARSER2STEP_H_*/ |