Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into master-integration
[qt-netbsd.git] / src / testlib / qtestelementattribute.h
blob6913847673c608348aea5417b38f0fb5923c0f25
1 /****************************************************************************
2 **
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtTest module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file. Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights. These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
38 ** $QT_END_LICENSE$
40 ****************************************************************************/
42 #ifndef QTESTELEMENTATTRIBUTE_H
43 #define QTESTELEMENTATTRIBUTE_H
45 #include <QtTest/qtestcorelist.h>
47 QT_BEGIN_HEADER
49 QT_BEGIN_NAMESPACE
51 QT_MODULE(Test)
53 namespace QTest {
55 enum AttributeIndex
57 AI_Undefined = -1,
58 AI_Name = 0,
59 AI_Result = 1,
60 AI_Tests = 2,
61 AI_Failures = 3,
62 AI_Errors = 4,
63 AI_Type = 5,
64 AI_Description = 6,
65 AI_PropertyValue = 7,
66 AI_QTestVersion = 8,
67 AI_QtVersion = 9,
68 AI_File = 10,
69 AI_Line = 11,
70 AI_Metric = 12,
71 AI_Tag = 13,
72 AI_Value = 14,
73 AI_Iterations = 15
76 enum LogElementType
78 LET_Undefined = -1,
79 LET_Property = 0,
80 LET_Properties = 1,
81 LET_Failure = 2,
82 LET_Error = 3,
83 LET_TestCase = 4,
84 LET_TestSuite = 5,
85 LET_Benchmark = 6,
86 LET_SystemError = 7
90 class QTestElementAttribute: public QTestCoreList<QTestElementAttribute>
92 public:
93 QTestElementAttribute();
94 ~QTestElementAttribute();
96 const char *value() const;
97 const char *name() const;
98 QTest::AttributeIndex index() const;
99 bool isNull() const;
100 bool setPair(QTest::AttributeIndex attributeIndex, const char *value);
102 private:
103 char *attributeValue;
104 QTest::AttributeIndex attributeIndex;
107 QT_END_NAMESPACE
109 QT_END_HEADER
111 #endif