testability-driver 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -1172,56 +1172,55 @@ module MobyBehaviour
|
|
1172
1172
|
|
1173
1173
|
begin
|
1174
1174
|
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
rescue
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
return xml
|
1175
|
+
subdata =
|
1176
|
+
MobyUtil::XML.parse_string(
|
1177
|
+
execute_command(
|
1178
|
+
MobyCommand::Application.new(
|
1179
|
+
:State,
|
1180
|
+
nil,
|
1181
|
+
pid,
|
1182
|
+
self,
|
1183
|
+
nil,
|
1184
|
+
nil,
|
1185
|
+
nil,
|
1186
|
+
nil,
|
1187
|
+
{
|
1188
|
+
'x_parent_absolute' => x_prev,
|
1189
|
+
'y_parent_absolute' => y_prev,
|
1190
|
+
'embedded' => 'true',
|
1191
|
+
'parent_size' => winSize
|
1192
|
+
}
|
1193
|
+
)
|
1194
|
+
)[ 0 ]
|
1195
|
+
)
|
1196
|
+
|
1197
|
+
child = subdata.root.xpath('//object')[0]
|
1198
|
+
|
1199
|
+
# Remove the attribute with the pid retrieval was not successful.
|
1200
|
+
# (server returns the previous hit if not found)
|
1201
|
+
if child.attribute('id' ) != pid
|
1202
|
+
|
1203
|
+
element.remove
|
1204
|
+
|
1205
|
+
else
|
1206
|
+
|
1207
|
+
# Remove the application layer
|
1208
|
+
objs = child.xpath( '/tasMessage/tasInfo/object/objects/*' )
|
1209
|
+
|
1210
|
+
if !objs.nil?
|
1211
|
+
|
1212
|
+
objs.each { | el | element.add_previous_sibling( el ) }
|
1213
|
+
|
1214
|
+
element.remove
|
1215
|
+
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
rescue MobyBase::ApplicationNotAvailableError => e
|
1221
|
+
|
1222
|
+
# Ignore the application not available error
|
1223
|
+
return xml
|
1225
1224
|
|
1226
1225
|
end
|
1227
1226
|
|
@@ -1175,7 +1175,7 @@ module MobyBehaviour
|
|
1175
1175
|
|
1176
1176
|
Kernel::raise MobyBase::AttributeNotFoundError.new(
|
1177
1177
|
|
1178
|
-
"Could not find attribute #{
|
1178
|
+
"Could not find attribute #{ name.inspect } for test object of type #{ @type.to_s }"
|
1179
1179
|
|
1180
1180
|
)
|
1181
1181
|
|
metadata
CHANGED
@@ -1,13 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testability-driver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease: false
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 0
|
9
|
-
- 0
|
10
|
-
version: 1.0.0
|
4
|
+
version: 1.0.1
|
11
5
|
platform: ruby
|
12
6
|
authors:
|
13
7
|
- Testability Driver team
|
@@ -15,57 +9,39 @@ autorequire:
|
|
15
9
|
bindir: bin/
|
16
10
|
cert_chain: []
|
17
11
|
|
18
|
-
date:
|
12
|
+
date: 2011-01-20 00:00:00 +02:00
|
19
13
|
default_executable:
|
20
14
|
dependencies:
|
21
15
|
- !ruby/object:Gem::Dependency
|
22
16
|
name: log4r
|
23
|
-
|
24
|
-
|
25
|
-
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
20
|
requirements:
|
27
21
|
- - ">="
|
28
22
|
- !ruby/object:Gem::Version
|
29
|
-
hash: 29
|
30
|
-
segments:
|
31
|
-
- 1
|
32
|
-
- 1
|
33
|
-
- 7
|
34
23
|
version: 1.1.7
|
35
|
-
|
36
|
-
version_requirements: *id001
|
24
|
+
version:
|
37
25
|
- !ruby/object:Gem::Dependency
|
38
26
|
name: nokogiri
|
39
|
-
|
40
|
-
|
41
|
-
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
30
|
requirements:
|
43
31
|
- - ">="
|
44
32
|
- !ruby/object:Gem::Version
|
45
|
-
hash: 5
|
46
|
-
segments:
|
47
|
-
- 1
|
48
|
-
- 4
|
49
|
-
- 1
|
50
33
|
version: 1.4.1
|
51
|
-
|
52
|
-
version_requirements: *id002
|
34
|
+
version:
|
53
35
|
- !ruby/object:Gem::Dependency
|
54
36
|
name: builder
|
55
|
-
|
56
|
-
|
57
|
-
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
40
|
requirements:
|
59
41
|
- - ">="
|
60
42
|
- !ruby/object:Gem::Version
|
61
|
-
hash: 15
|
62
|
-
segments:
|
63
|
-
- 2
|
64
|
-
- 1
|
65
|
-
- 2
|
66
43
|
version: 2.1.2
|
67
|
-
|
68
|
-
version_requirements: *id003
|
44
|
+
version:
|
69
45
|
description:
|
70
46
|
email: testabilitydriver@nokia.com
|
71
47
|
executables:
|
@@ -84,200 +60,200 @@ files:
|
|
84
60
|
- lib/tdriver/matti.rb
|
85
61
|
- lib/tdriver/tdriver.rb
|
86
62
|
- lib/tdriver/loader.rb
|
87
|
-
- lib/tdriver/base/command_data/command_data.rb
|
88
|
-
- lib/tdriver/base/command_data/loader.rb
|
89
|
-
- lib/tdriver/base/behaviour/behaviours/object_behaviour_description.rb
|
90
|
-
- lib/tdriver/base/behaviour/behaviours/object_behaviour_composition.rb
|
91
|
-
- lib/tdriver/base/behaviour/behaviours/object_composition.rb
|
92
|
-
- lib/tdriver/base/behaviour/behaviour.rb
|
93
|
-
- lib/tdriver/base/behaviour/factory.rb
|
94
|
-
- lib/tdriver/base/behaviour/loader.rb
|
95
|
-
- lib/tdriver/base/sut/adapter.rb
|
96
63
|
- lib/tdriver/base/sut/controller.rb
|
97
64
|
- lib/tdriver/base/sut/sut.rb
|
98
|
-
- lib/tdriver/base/sut/
|
99
|
-
- lib/tdriver/base/sut/generic/commands/screen_capture.rb
|
100
|
-
- lib/tdriver/base/sut/generic/commands/fixture.rb
|
101
|
-
- lib/tdriver/base/sut/generic/commands/key_sequence.rb
|
102
|
-
- lib/tdriver/base/sut/generic/commands/application.rb
|
103
|
-
- lib/tdriver/base/sut/generic/behaviours/switchbox_behaviour.rb
|
104
|
-
- lib/tdriver/base/sut/generic/behaviours/verification.rb
|
65
|
+
- lib/tdriver/base/sut/factory.rb
|
105
66
|
- lib/tdriver/base/sut/generic/behaviours/find.rb
|
67
|
+
- lib/tdriver/base/sut/generic/behaviours/flash_behaviour.rb
|
68
|
+
- lib/tdriver/base/sut/generic/behaviours/switchbox_behaviour.rb
|
106
69
|
- lib/tdriver/base/sut/generic/behaviours/controller.rb
|
107
70
|
- lib/tdriver/base/sut/generic/behaviours/sut.rb
|
108
|
-
- lib/tdriver/base/sut/generic/behaviours/
|
71
|
+
- lib/tdriver/base/sut/generic/behaviours/verification.rb
|
109
72
|
- lib/tdriver/base/sut/generic/behaviours/application.rb
|
110
|
-
- lib/tdriver/base/sut/
|
73
|
+
- lib/tdriver/base/sut/generic/plugin.rb
|
74
|
+
- lib/tdriver/base/sut/generic/commands/screen_capture.rb
|
75
|
+
- lib/tdriver/base/sut/generic/commands/fixture.rb
|
76
|
+
- lib/tdriver/base/sut/generic/commands/application.rb
|
77
|
+
- lib/tdriver/base/sut/generic/commands/key_sequence.rb
|
111
78
|
- lib/tdriver/base/sut/loader.rb
|
79
|
+
- lib/tdriver/base/sut/adapter.rb
|
80
|
+
- lib/tdriver/base/command_data/command_data.rb
|
81
|
+
- lib/tdriver/base/command_data/loader.rb
|
82
|
+
- lib/tdriver/base/behaviour/behaviours/object_behaviour_description.rb
|
83
|
+
- lib/tdriver/base/behaviour/behaviours/object_composition.rb
|
84
|
+
- lib/tdriver/base/behaviour/behaviours/object_behaviour_composition.rb
|
85
|
+
- lib/tdriver/base/behaviour/factory.rb
|
86
|
+
- lib/tdriver/base/behaviour/behaviour.rb
|
87
|
+
- lib/tdriver/base/behaviour/loader.rb
|
88
|
+
- lib/tdriver/base/errors.rb
|
112
89
|
- lib/tdriver/base/state_object.rb
|
113
|
-
- lib/tdriver/base/
|
114
|
-
- lib/tdriver/base/test_object/abstract.rb
|
115
|
-
- lib/tdriver/base/test_object/adapter.rb
|
90
|
+
- lib/tdriver/base/loader.rb
|
116
91
|
- lib/tdriver/base/test_object/behaviours/test_object.rb
|
117
92
|
- lib/tdriver/base/test_object/behaviours/syncronization.rb
|
118
93
|
- lib/tdriver/base/test_object/cache.rb
|
119
|
-
- lib/tdriver/base/test_object/
|
94
|
+
- lib/tdriver/base/test_object/factory_new.rb
|
120
95
|
- lib/tdriver/base/test_object/factory.rb
|
96
|
+
- lib/tdriver/base/test_object/verification.rb
|
97
|
+
- lib/tdriver/base/test_object/identificator.rb
|
98
|
+
- lib/tdriver/base/test_object/abstract.rb
|
121
99
|
- lib/tdriver/base/test_object/loader.rb
|
122
|
-
- lib/tdriver/base/test_object/
|
123
|
-
- lib/tdriver/base/errors.rb
|
124
|
-
- lib/tdriver/base/loader.rb
|
100
|
+
- lib/tdriver/base/test_object/adapter.rb
|
125
101
|
- lib/tdriver/verify/verify.rb
|
126
102
|
- lib/tdriver/verify/verify.rb_org
|
127
|
-
- lib/tdriver/report/
|
128
|
-
- lib/tdriver/report/report_execution_statistics.rb
|
129
|
-
- lib/tdriver/report/report_api.rb
|
130
|
-
- lib/tdriver/report/report_grouping.rb
|
103
|
+
- lib/tdriver/report/report.rb
|
131
104
|
- lib/tdriver/report/report_file_capture.rb
|
132
|
-
- lib/tdriver/report/
|
105
|
+
- lib/tdriver/report/report_rspec.rb
|
133
106
|
- lib/tdriver/report/report_test_case_run.rb
|
134
|
-
- lib/tdriver/report/
|
135
|
-
- lib/tdriver/report/
|
107
|
+
- lib/tdriver/report/report_data_table.rb
|
108
|
+
- lib/tdriver/report/report_junit_xml.rb
|
136
109
|
- lib/tdriver/report/report_data_presentation.rb
|
137
|
-
- lib/tdriver/report/
|
138
|
-
- lib/tdriver/report/
|
110
|
+
- lib/tdriver/report/report_api.rb
|
111
|
+
- lib/tdriver/report/report_crash_file_capture.rb
|
139
112
|
- lib/tdriver/report/report_combine.rb
|
140
|
-
- lib/tdriver/report/
|
141
|
-
- lib/tdriver/report/
|
142
|
-
- lib/tdriver/report/
|
143
|
-
- lib/tdriver/report/
|
144
|
-
- lib/tdriver/report/
|
113
|
+
- lib/tdriver/report/report_writer.rb
|
114
|
+
- lib/tdriver/report/report_execution_statistics.rb
|
115
|
+
- lib/tdriver/report/report_grouping.rb
|
116
|
+
- lib/tdriver/report/report_creator.rb
|
117
|
+
- lib/tdriver/report/report_test_run.rb
|
145
118
|
- lib/tdriver/report/report_javascript.rb
|
146
|
-
- lib/tdriver/report/report_data_table.rb
|
147
119
|
- lib/tdriver/report/report_cucumber_listener.rb
|
148
|
-
- lib/tdriver/report/
|
149
|
-
- lib/tdriver/report/
|
150
|
-
- lib/tdriver/
|
151
|
-
- lib/tdriver/
|
152
|
-
- lib/tdriver/
|
153
|
-
- lib/tdriver/
|
154
|
-
- lib/tdriver/util/
|
155
|
-
- lib/tdriver/util/
|
120
|
+
- lib/tdriver/report/error_recovery/tdriver_custom_error_recovery.rb
|
121
|
+
- lib/tdriver/report/error_recovery/tdriver_error_recovery.rb
|
122
|
+
- lib/tdriver/report/error_recovery/tdriver_error_recovery_settings.rb
|
123
|
+
- lib/tdriver/report/report_cucumber.rb
|
124
|
+
- lib/tdriver/report/report_cucumber_reporter.rb
|
125
|
+
- lib/tdriver/report/report_test_unit.rb
|
126
|
+
- lib/tdriver/util/localisation/error.rb
|
127
|
+
- lib/tdriver/util/localisation/localisation.rb
|
128
|
+
- lib/tdriver/util/localisation/loader.rb
|
156
129
|
- lib/tdriver/util/parameter/parameter_user_api.rb
|
157
|
-
- lib/tdriver/util/parameter/error.rb
|
158
130
|
- lib/tdriver/util/parameter/parameter_template.rb
|
131
|
+
- lib/tdriver/util/parameter/error.rb
|
132
|
+
- lib/tdriver/util/parameter/parameter_xml.rb
|
133
|
+
- lib/tdriver/util/parameter/parameter.rb
|
159
134
|
- lib/tdriver/util/parameter/parameter_hash.rb
|
160
135
|
- lib/tdriver/util/parameter/loader.rb
|
161
|
-
- lib/tdriver/util/
|
162
|
-
- lib/tdriver/util/
|
163
|
-
- lib/tdriver/util/
|
164
|
-
- lib/tdriver/util/plugin/abstract.rb
|
165
|
-
- lib/tdriver/util/plugin/service.rb
|
166
|
-
- lib/tdriver/util/plugin/error.rb
|
167
|
-
- lib/tdriver/util/plugin/loader.rb
|
168
|
-
- lib/tdriver/util/common.rb
|
169
|
-
- lib/tdriver/util/video_utils.rb
|
170
|
-
- lib/tdriver/util/recorder.rb
|
171
|
-
- lib/tdriver/util/logger.rb
|
172
|
-
- lib/tdriver/util/xml/text.rb
|
173
|
-
- lib/tdriver/util/xml/nil_node.rb
|
136
|
+
- lib/tdriver/util/localisation.rb
|
137
|
+
- lib/tdriver/util/xml/abstraction.rb
|
138
|
+
- lib/tdriver/util/xml/error.rb
|
174
139
|
- lib/tdriver/util/xml/builder.rb
|
175
|
-
- lib/tdriver/util/xml/
|
176
|
-
- lib/tdriver/util/xml/
|
177
|
-
- lib/tdriver/util/xml/document.rb
|
140
|
+
- lib/tdriver/util/xml/nil_node.rb
|
141
|
+
- lib/tdriver/util/xml/element.rb
|
178
142
|
- lib/tdriver/util/xml/xml.rb
|
179
|
-
- lib/tdriver/util/xml/
|
180
|
-
- lib/tdriver/util/xml/
|
143
|
+
- lib/tdriver/util/xml/text.rb
|
144
|
+
- lib/tdriver/util/xml/document.rb
|
145
|
+
- lib/tdriver/util/xml/attribute.rb
|
181
146
|
- lib/tdriver/util/xml/parsers/libxml/libxml.rb
|
182
|
-
- lib/tdriver/util/xml/parsers/nokogiri/
|
147
|
+
- lib/tdriver/util/xml/parsers/nokogiri/abstraction.rb
|
183
148
|
- lib/tdriver/util/xml/parsers/nokogiri/builder.rb
|
184
|
-
- lib/tdriver/util/xml/parsers/nokogiri/
|
185
|
-
- lib/tdriver/util/xml/parsers/nokogiri/
|
149
|
+
- lib/tdriver/util/xml/parsers/nokogiri/element.rb
|
150
|
+
- lib/tdriver/util/xml/parsers/nokogiri/text.rb
|
186
151
|
- lib/tdriver/util/xml/parsers/nokogiri/document.rb
|
187
|
-
- lib/tdriver/util/xml/parsers/nokogiri/
|
152
|
+
- lib/tdriver/util/xml/parsers/nokogiri/attribute.rb
|
153
|
+
- lib/tdriver/util/xml/parsers/nokogiri/nodeset.rb
|
188
154
|
- lib/tdriver/util/xml/parsers/nokogiri/loader.rb
|
189
|
-
- lib/tdriver/util/xml/parsers/nokogiri/element.rb
|
190
155
|
- lib/tdriver/util/xml/parsers/loader.rb
|
191
|
-
- lib/tdriver/util/xml/
|
156
|
+
- lib/tdriver/util/xml/nodeset.rb
|
157
|
+
- lib/tdriver/util/xml/nil_element.rb
|
192
158
|
- lib/tdriver/util/xml/loader.rb
|
193
|
-
- lib/tdriver/util/
|
194
|
-
- lib/tdriver/util/
|
195
|
-
- lib/tdriver/util/
|
196
|
-
- lib/tdriver/util/
|
159
|
+
- lib/tdriver/util/common.rb
|
160
|
+
- lib/tdriver/util/hooking.rb
|
161
|
+
- lib/tdriver/util/stats.rb
|
162
|
+
- lib/tdriver/util/video_utils.rb
|
163
|
+
- lib/tdriver/util/dbaccess/error.rb
|
164
|
+
- lib/tdriver/util/dbaccess/dbaccess.rb
|
165
|
+
- lib/tdriver/util/dbaccess/dbconnection.rb
|
166
|
+
- lib/tdriver/util/dbaccess/loader.rb
|
167
|
+
- lib/tdriver/util/plugin/error.rb
|
168
|
+
- lib/tdriver/util/plugin/service.rb
|
169
|
+
- lib/tdriver/util/plugin/abstract.rb
|
170
|
+
- lib/tdriver/util/plugin/loader.rb
|
171
|
+
- lib/tdriver/util/dynamic_attribute_filter.rb
|
172
|
+
- lib/tdriver/util/operator_data/error.rb
|
173
|
+
- lib/tdriver/util/operator_data/operator_data.rb
|
174
|
+
- lib/tdriver/util/operator_data/loader.rb
|
175
|
+
- lib/tdriver/util/parameter.rb
|
197
176
|
- lib/tdriver/util/common/gem.rb
|
198
|
-
- lib/tdriver/util/common/
|
199
|
-
- lib/tdriver/util/common/
|
200
|
-
- lib/tdriver/util/common/
|
201
|
-
- lib/tdriver/util/common/
|
177
|
+
- lib/tdriver/util/common/error.rb
|
178
|
+
- lib/tdriver/util/common/exceptions.rb
|
179
|
+
- lib/tdriver/util/common/object.rb
|
180
|
+
- lib/tdriver/util/common/crc16.rb
|
202
181
|
- lib/tdriver/util/common/kernel.rb
|
182
|
+
- lib/tdriver/util/common/numeric.rb
|
183
|
+
- lib/tdriver/util/common/retryable.rb
|
203
184
|
- lib/tdriver/util/common/array.rb
|
204
|
-
- lib/tdriver/util/common/object.rb
|
205
185
|
- lib/tdriver/util/common/environment.rb
|
206
|
-
- lib/tdriver/util/common/crc16.rb
|
207
|
-
- lib/tdriver/util/common/exceptions.rb
|
208
|
-
- lib/tdriver/util/common/error.rb
|
209
|
-
- lib/tdriver/util/common/loader.rb
|
210
186
|
- lib/tdriver/util/common/string.rb
|
211
|
-
- lib/tdriver/util/
|
212
|
-
- lib/tdriver/util/
|
213
|
-
- lib/tdriver/util/
|
187
|
+
- lib/tdriver/util/common/loader.rb
|
188
|
+
- lib/tdriver/util/common/hash.rb
|
189
|
+
- lib/tdriver/util/common/file.rb
|
190
|
+
- lib/tdriver/util/recorder.rb
|
191
|
+
- lib/tdriver/util/other/config.rb
|
214
192
|
- lib/tdriver/util/loader.rb
|
215
|
-
- lib/tdriver/util/
|
216
|
-
- lib/tdriver/util/
|
217
|
-
- lib/tdriver/util/
|
218
|
-
- lib/tdriver/util/
|
219
|
-
- lib/tdriver/
|
220
|
-
- lib/tdriver/
|
221
|
-
- lib/tdriver-devtools/
|
222
|
-
- lib/tdriver-devtools/
|
223
|
-
- lib/tdriver-devtools/
|
224
|
-
- lib/tdriver-devtools/
|
225
|
-
- lib/tdriver-devtools/
|
226
|
-
- lib/tdriver-devtools/
|
227
|
-
- lib/tdriver-devtools/
|
228
|
-
- lib/tdriver-devtools/
|
229
|
-
- lib/tdriver-devtools/
|
230
|
-
- lib/tdriver-devtools/
|
231
|
-
- lib/tdriver-devtools/behaviour/xml/
|
232
|
-
- lib/tdriver-devtools/behaviour/xml/
|
233
|
-
- lib/tdriver-devtools/behaviour/xml/
|
234
|
-
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.
|
235
|
-
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.
|
236
|
-
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.method.exceptions.template
|
193
|
+
- lib/tdriver/util/logger.rb
|
194
|
+
- lib/tdriver/util/user_data/error.rb
|
195
|
+
- lib/tdriver/util/user_data/user_data.rb
|
196
|
+
- lib/tdriver/util/user_data/loader.rb
|
197
|
+
- lib/tdriver-devtools/behaviour/old/xml/example/impl.rb_invalid
|
198
|
+
- lib/tdriver-devtools/behaviour/old/xml/example/flick-example.rb
|
199
|
+
- lib/tdriver-devtools/behaviour/old/xml/generate_behaviour_xml.rb
|
200
|
+
- lib/tdriver-devtools/behaviour/old/xml/update
|
201
|
+
- lib/tdriver-devtools/behaviour/old/xml/qdoc_generator.rb
|
202
|
+
- lib/tdriver-devtools/behaviour/old/xml/templates/behaviour.xml.argument_type.template
|
203
|
+
- lib/tdriver-devtools/behaviour/old/xml/templates/behaviour.xml.howto.line.template
|
204
|
+
- lib/tdriver-devtools/behaviour/old/xml/templates/behaviour.xml.template
|
205
|
+
- lib/tdriver-devtools/behaviour/old/xml/templates/behaviour.xml.howto.template
|
206
|
+
- lib/tdriver-devtools/behaviour/old/xml/templates/behaviour.module.template
|
207
|
+
- lib/tdriver-devtools/behaviour/old/xml/templates/behaviour.xml.exception.template
|
208
|
+
- lib/tdriver-devtools/behaviour/old/xml/templates/behaviour.xml.argument.template
|
209
|
+
- lib/tdriver-devtools/behaviour/old/xml/templates/behaviour.method.template
|
210
|
+
- lib/tdriver-devtools/behaviour/old/xml/templates/behaviour.xml.method.template
|
211
|
+
- lib/tdriver-devtools/behaviour/old/xml/lib/tdriver_generator.rb
|
212
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.argument.default.template
|
213
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.argument_type.template
|
237
214
|
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.template
|
215
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.table.template
|
238
216
|
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.method.deprecated.template
|
239
|
-
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.table.row.template
|
240
|
-
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.argument.default.template
|
241
|
-
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.table.item.template
|
242
|
-
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.argument.template
|
243
217
|
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.method.tables.template
|
244
|
-
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.method.info.template
|
245
218
|
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.exception.template
|
246
|
-
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.method.arguments.template
|
247
|
-
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.argument_type.template
|
248
219
|
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.returns.template
|
249
|
-
- lib/tdriver-devtools/behaviour/
|
250
|
-
- lib/tdriver-devtools/behaviour/
|
251
|
-
- lib/tdriver-devtools/behaviour/
|
252
|
-
- lib/tdriver-devtools/behaviour/
|
253
|
-
- lib/tdriver-devtools/behaviour/
|
254
|
-
- lib/tdriver-devtools/behaviour/
|
255
|
-
- lib/tdriver-devtools/behaviour/
|
256
|
-
- lib/tdriver-devtools/behaviour/
|
257
|
-
- lib/tdriver-devtools/behaviour/
|
258
|
-
- lib/tdriver-devtools/behaviour/
|
259
|
-
- lib/tdriver-devtools/
|
260
|
-
- lib/tdriver-devtools/
|
261
|
-
- lib/tdriver-devtools/
|
262
|
-
- lib/tdriver-devtools/
|
263
|
-
- lib/tdriver-devtools/
|
264
|
-
- lib/tdriver-devtools/
|
220
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.table.row.template
|
221
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.argument.template
|
222
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.table.item.template
|
223
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.method.arguments.template
|
224
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.method.info.template
|
225
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.method.template
|
226
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.method.returns.template
|
227
|
+
- lib/tdriver-devtools/behaviour/xml/templates/behaviour.xml.method.exceptions.template
|
228
|
+
- lib/tdriver-devtools/behaviour/xml/rdoc_behaviour_xml_generator.rb
|
229
|
+
- lib/tdriver-devtools/behaviour/xml/generate.rb
|
230
|
+
- lib/tdriver-devtools/tdriver-devtools.rb
|
231
|
+
- lib/tdriver-devtools/plugin/placeholder.txt
|
232
|
+
- lib/tdriver-devtools/tests/feature_tests/example/behaviour_example.rb
|
233
|
+
- lib/tdriver-devtools/tests/feature_tests/update
|
234
|
+
- lib/tdriver-devtools/tests/feature_tests/templates/scenario_method.template
|
235
|
+
- lib/tdriver-devtools/tests/feature_tests/templates/feature_attribute.template
|
236
|
+
- lib/tdriver-devtools/tests/feature_tests/templates/scenario_attribute.template
|
237
|
+
- lib/tdriver-devtools/tests/feature_tests/templates/feature_method.template
|
238
|
+
- lib/tdriver-devtools/tests/feature_tests/lib/custom_rdoc_generator.rb
|
239
|
+
- lib/tdriver-devtools/tests/feature_tests/generate.rb
|
240
|
+
- lib/tdriver-devtools/doc/update
|
241
|
+
- lib/tdriver-devtools/doc/xslt/template.xsl
|
242
|
+
- lib/tdriver-devtools/doc/xslt/update
|
243
|
+
- lib/tdriver-devtools/doc/xslt/html.rb
|
265
244
|
- lib/tdriver-devtools/doc/behaviour_xml/created.rid
|
266
245
|
- lib/tdriver-devtools/doc/behaviour_xml/tdriver.hash
|
267
|
-
- lib/tdriver-devtools/doc/
|
268
|
-
- lib/tdriver-devtools/doc/generate.rb
|
246
|
+
- lib/tdriver-devtools/doc/behaviour_xml/QtExampleGestureBehaviour.xml
|
269
247
|
- lib/tdriver-devtools/doc/feature_xml/qt_widget_hold.feature.xml
|
270
248
|
- lib/tdriver-devtools/doc/feature_xml/qt_widget_tap.feature.xml
|
271
|
-
- lib/tdriver-devtools/doc/
|
272
|
-
-
|
273
|
-
- lib/tdriver-devtools/doc/xslt/html.rb
|
274
|
-
- xml/parameters/tdriver_parameters.xml
|
249
|
+
- lib/tdriver-devtools/doc/generate.rb
|
250
|
+
- xml/behaviours/generic.xml
|
275
251
|
- xml/defaults/generic.xml
|
276
252
|
- xml/defaults/sut_generic.xml
|
253
|
+
- xml/parameters/tdriver_parameters.xml
|
277
254
|
- xml/templates/generic.xml
|
278
|
-
- xml/behaviours/generic.xml
|
279
|
-
- bin/tdriver-devtools
|
280
255
|
- bin/start_app_perf
|
256
|
+
- bin/tdriver-devtools
|
281
257
|
- ext/extconf.rb
|
282
258
|
- ext/native_extensions.c
|
283
259
|
- config/sut_parameters.rb
|
@@ -291,27 +267,21 @@ rdoc_options: []
|
|
291
267
|
require_paths:
|
292
268
|
- lib/.
|
293
269
|
required_ruby_version: !ruby/object:Gem::Requirement
|
294
|
-
none: false
|
295
270
|
requirements:
|
296
271
|
- - ">="
|
297
272
|
- !ruby/object:Gem::Version
|
298
|
-
hash: 3
|
299
|
-
segments:
|
300
|
-
- 0
|
301
273
|
version: "0"
|
274
|
+
version:
|
302
275
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
303
|
-
none: false
|
304
276
|
requirements:
|
305
277
|
- - ">="
|
306
278
|
- !ruby/object:Gem::Version
|
307
|
-
hash: 3
|
308
|
-
segments:
|
309
|
-
- 0
|
310
279
|
version: "0"
|
280
|
+
version:
|
311
281
|
requirements: []
|
312
282
|
|
313
283
|
rubyforge_project:
|
314
|
-
rubygems_version: 1.3.
|
284
|
+
rubygems_version: 1.3.5
|
315
285
|
signing_key:
|
316
286
|
specification_version: 3
|
317
287
|
summary: Testability Driver
|