blob: d8af2b75c76c9eb85bedd1534813e6b1640adb62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
TARGET = AutoTest
TEMPLATE = lib
include(../../qtcreatorplugin.pri)
DEFINES += AUTOTEST_LIBRARY
SOURCES += \
testtreeview.cpp \
testtreemodel.cpp \
testtreeitem.cpp \
testcodeparser.cpp \
autotestplugin.cpp \
testrunner.cpp \
testconfiguration.cpp \
testresult.cpp \
testresultspane.cpp \
testresultmodel.cpp \
testresultdelegate.cpp \
testtreeitemdelegate.cpp \
testsettings.cpp \
testsettingspage.cpp \
testnavigationwidget.cpp \
testoutputreader.cpp \
itestparser.cpp \
gtest/gtestconfiguration.cpp \
gtest/gtestparser.cpp \
gtest/gtesttreeitem.cpp \
gtest/gtestresult.cpp \
gtest/gtestoutputreader.cpp \
gtest/gtestvisitors.cpp \
gtest/gtestframework.cpp \
gtest/gtestsettings.cpp \
gtest/gtestsettingspage.cpp \
gtest/gtest_utils.cpp \
qtest/qttesttreeitem.cpp \
qtest/qttestvisitors.cpp \
qtest/qttestconfiguration.cpp \
qtest/qttestoutputreader.cpp \
qtest/qttestresult.cpp \
qtest/qttestparser.cpp \
qtest/qttestframework.cpp \
qtest/qttestsettings.cpp \
qtest/qttestsettingspage.cpp \
qtest/qttest_utils.cpp \
quick/quicktestconfiguration.cpp \
quick/quicktestparser.cpp \
quick/quicktesttreeitem.cpp \
quick/quicktestvisitors.cpp \
quick/quicktestframework.cpp \
quick/quicktest_utils.cpp \
testframeworkmanager.cpp \
testeditormark.cpp
HEADERS += \
testtreeview.h \
testtreemodel.h \
testtreeitem.h \
testcodeparser.h \
autotestplugin.h \
autotest_global.h \
autotestconstants.h \
testrunner.h \
testconfiguration.h \
testresult.h \
testresultspane.h \
testresultmodel.h \
testresultdelegate.h \
testtreeitemdelegate.h \
testsettings.h \
testsettingspage.h \
testnavigationwidget.h \
testoutputreader.h \
autotesticons.h \
itestframework.h \
iframeworksettings.h \
itestparser.h \
gtest/gtestconfiguration.h \
gtest/gtestparser.h \
gtest/gtesttreeitem.h \
gtest/gtestoutputreader.h \
gtest/gtestresult.h \
gtest/gtest_utils.h \
gtest/gtestvisitors.h \
gtest/gtestframework.h \
gtest/gtestsettings.h \
gtest/gtestsettingspage.h \
gtest/gtestconstants.h \
qtest/qttesttreeitem.h \
qtest/qttest_utils.h \
qtest/qttestresult.h \
qtest/qttestvisitors.h \
qtest/qttestconfiguration.h \
qtest/qttestoutputreader.h \
qtest/qttestparser.h \
qtest/qttestframework.h \
qtest/qttestsettings.h \
qtest/qttestsettingspage.h \
qtest/qttestconstants.h \
quick/quicktestconfiguration.h \
quick/quicktestparser.h \
quick/quicktesttreeitem.h \
quick/quicktest_utils.h \
quick/quicktestvisitors.h \
quick/quicktestframework.h \
testframeworkmanager.h \
testrunconfiguration.h \
itestsettingspage.h \
testeditormark.h
RESOURCES += \
autotest.qrc
FORMS += \
testsettingspage.ui \
qtest/qttestsettingspage.ui \
gtest/gtestsettingspage.ui
equals(TEST, 1) {
HEADERS += autotestunittests.h
SOURCES += autotestunittests.cpp
RESOURCES += autotestunittests.qrc
}
|