LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
global class TestHarness {
    global TestHarness() { }
    global Object clone() { }
    global Slack.TestHarness.State getNewSlackState() { }
global class Actions {
    global Object clone() { }
    global Object getComponent(Integer idx, System.Type clazz) { }
    global Object getComponentByName(String name, System.Type clazz) { }
    global Integer getComponentCount() { }
    global String getName() { }
    global String toString() { }
 
}
global class Button {
    global void click() { }
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global String getLabel() { }
    global String getName() { }
    global String getStyle() { }
    global String getUrl() { }
    global String getValue() { }
    global String toString() { }
 
}
global class Channel {
    global void addUser(Slack.TestHarness.User user) { }
    global Boolean canBeOpenedByUser(Slack.TestHarness.User user) { }
    global Object clone() { }
    global String getId() { }
    global String getLocale() { }
    global Integer getMessageCount(Slack.TestHarness.User user) { }
    global List<Slack.TestHarness.Message> getMessages(Slack.TestHarness.User user) { }
    global String getName() { }
    global Slack.TestHarness.Team getTeam() { }
    global Boolean isPrivate() { }
    global void removeUser(Slack.TestHarness.User user) { }
    global Slack.TestHarness.Message sendMessage(Slack.TestHarness.UserSession userSession, String text) { }
    global String toString() { }
 
}
global class Checkbox {
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global String getDescription() { }
    global Boolean getInitialValue() { }
    global String getLabel() { }
    global String getName() { }
    global Boolean getValue() { }
    global void setValue(Boolean value) { }
    global String toString() { }
    global void toggleValue() { }
 
}
global class CheckboxGroup {
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global List<String> getInitialValue() { }
    global String getName() { }
    global List<Slack.TestHarness.Option> getOptions() { }
    global List<String> getValue() { }
    global void setValue(List<String> listOfIdentifiers) { }
    global String toString() { }
    global void toggleValue(Slack.TestHarness.Option option) { }
    global void toggleValue(String identifier) { }
 
}
global class Confirm {
    global Object clone() { }
    global String getConfirm() { }
    global String getDeny() { }
    global String getStyle() { }
    global String getText() { }
    global String getTitle() { }
    global String toString() { }
 
}
global class Context {
    global Object clone() { }
    global Object getComponent(Integer idx, System.Type clazz) { }
    global Integer getComponentCount() { }
    global String getName() { }
    global String toString() { }
 
}
global class ConversationsSelect {
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global Slack.TestHarness.Filter getFilter() { }
    global List<String> getInitialMultiselectValue() { }
    global String getInitialValue() { }
    global Integer getMaxSelection() { }
    global List<String> getMultiselectValue() { }
    global String getName() { }
    global List<Slack.TestHarness.Option> getOptions() { }
    global String getPlaceholder() { }
    global String getValue() { }
    global Boolean isMultiselect() { }
    global void setMultiselectValue(List<String> listOfIdentifiers) { }
    global void setValue(String identifier) { }
    global String toString() { }
 
}
global class Datasource {
    global Object clone() { }
    global String getDefinition() { }
    global Map<String,Object> getProperties() { }
    global String toString() { }
 
}
global class DatePicker {
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global String getInitialValue() { }
    global String getName() { }
    global String getPlaceholder() { }
    global String getValue() { }
    global void setValue(String value) { }
    global String toString() { }
 
}
global class DateTimePicker {
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global String getDateLabel() { }
    global String getInitialValue() { }
    global String getName() { }
    global String getPlaceholder() { }
    global Boolean getRequired() { }
    global String getSubmissionName() { }
    global String getTimeLabel() { }
    global String getValue() { }
    global void setDateValue(String value) { }
    global void setTimeValue(String value) { }
    global void setValue(String value) { }
    global String toString() { }
 
}
global class Divider {
    global Object clone() { }
    global String getName() { }
    global String toString() { }
 
}
global class Enterprise {
    global Object clone() { }
    global String getId() { }
    global String getName() { }
    global String toString() { }
 
}
global class ExternalSelect {
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global Slack.TestHarness.Datasource getDatasource() { }
    global List<String> getInitialMultiselectValue() { }
    global List<Slack.TestHarness.Option> getInitialOptions() { }
    global String getInitialValue() { }
    global Integer getMaxSelection() { }
    global Integer getMinQueryLength() { }
    global List<String> getMultiselectValue() { }
    global String getName() { }
    global List<Slack.TestHarness.OptionGroup> getOptionGroups() { }
    global List<Slack.TestHarness.Option> getOptions() { }
    global String getPlaceholder() { }
    global String getValue() { }
    global Boolean isMultiselect() { }
    global void query(String query) { }
    global void setMultiselectValue(List<String> listOfIdentifiers) { }
    global void setValue(String identifier) { }
    global String toString() { }
 
}
global class File {
    global Object clone() { }
    global String getExternalId() { }
    global String getName() { }
    global String getSource() { }
    global String toString() { }
 
}
global class Filter {
    global Object clone() { }
    global Boolean getExcludeBotUsers() { }
    global Boolean getExcludeExternalShared() { }
    global List<String> getInclude() { }
    global String toString() { }
 
}
global class Header {
    global Object clone() { }
    global String getName() { }
    global String getText() { }
    global String toString() { }
 
}
global class Home {
    global Object clone() { }
    global Slack.TestHarness.Button getButtonByLabel(String label) { }
    global Object getComponent(Integer idx, System.Type clazz) { }
    global Object getComponentByName(String name, System.Type clazz) { }
    global Integer getComponentCount() { }
    global Slack.TestHarness.Input getInputByLabel(String label) { }
    global String toString() { }
 
}
global class Image {
    global Object clone() { }
    global String getAltText() { }
    global String getImageUrl() { }
    global String getName() { }
    global String getTitle() { }
    global String toString() { }
 
}
global class InlineImage {
    global Object clone() { }
    global String getAltText() { }
    global String getImageUrl() { }
    global String toString() { }
 
}
global class Input {
    global Object clone() { }
    global Object getComponent(System.Type clazz) { }
    global Object getComponentByName(String name, System.Type clazz) { }
    global String getHint() { }
    global String getLabel() { }
    global String getName() { }
    global Boolean isRequired() { }
    global String toString() { }
 
}
global class Message {
    global Boolean canBeSeenByUser(Slack.TestHarness.User user) { }
    global Object clone() { }
    global Slack.TestHarness.Button getButtonByLabel(String label) { }
    global Slack.TestHarness.Channel getChannel() { }
    global Object getComponent(Integer idx, System.Type clazz) { }
    global Object getComponentByName(String name, System.Type clazz) { }
    global Integer getComponentCount() { }
    global Slack.TestHarness.Input getInputByLabel(String label) { }
    global String getMessageTs() { }
    global String getText() { }
    global Boolean isEphemeralMessage() { }
    global String toString() { }
 
}
global class Modal {
    global Object clone() { }
    global void close() { }
    global Slack.TestHarness.Button getButtonByLabel(String label) { }
    global String getCloseLabel() { }
    global Object getComponent(Integer idx, System.Type clazz) { }
    global Object getComponentByName(String name, System.Type clazz) { }
    global Integer getComponentCount() { }
    global Slack.TestHarness.Input getInputByLabel(String label) { }
    global String getInputError(String inputBlockName) { }
    global List<String> getInputErrorBlocks() { }
    global String getSubmitLabel() { }
    global String getTitle() { }
    global Boolean hasInputErrors() { }
    global Boolean submit() { }
    global String toString() { }
 
}
global class Option {
    global Object clone() { }
    global String getDescription() { }
    global String getIdentifier() { }
    global String getLabel() { }
    global String getUrl() { }
    global Boolean getValue() { }
    global String toString() { }
 
}
global class OptionGroup {
    global Object clone() { }
    global String getLabel() { }
    global List<Slack.TestHarness.Option> getOptions() { }
    global String toString() { }
 
}
global class Overflow {
    global void clickOption(Integer idx) { }
    global void clickOption(Slack.TestHarness.Option option) { }
    global void clickOption(String identifier) { }
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global String getName() { }
    global List<Slack.TestHarness.Option> getOptions() { }
    global String toString() { }
 
}
global class RadioGroup {
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global String getInitialValue() { }
    global String getName() { }
    global List<Slack.TestHarness.Option> getOptions() { }
    global String getValue() { }
    global void setValue(String identifier) { }
    global String toString() { }
 
}
global class Section {
    global Object clone() { }
    global Object getComponent(Integer idx, System.Type clazz) { }
    global Object getComponent(System.Type clazz) { }
    global Object getComponentByName(String name, System.Type clazz) { }
    global Integer getFieldCount() { }
    global String getFieldText(Integer idx) { }
    global String getName() { }
    global String getText() { }
    global String toString() { }
 
}
global class SelectInput {
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global List<String> getInitialMultiselectValue() { }
    global String getInitialValue() { }
    global Integer getMaxSelection() { }
    global List<String> getMultiselectValue() { }
    global String getName() { }
    global List<Slack.TestHarness.OptionGroup> getOptionGroups() { }
    global List<Slack.TestHarness.Option> getOptions() { }
    global List<Slack.TestHarness.OptionGroup> getOptionsGroups() { }
    global String getPlaceholder() { }
    global String getValue() { }
    global Boolean isMultiselect() { }
    global void setMultiselectValue(List<String> listOfIdentifiers) { }
    global void setValue(String identifier) { }
    global String toString() { }
 
}
global class State {
    global void clearAllClientMocks() { }
    global void clearAppClientMock() { }
    global void clearBotClientMock() { }
    global void clearUserClientMock() { }
    global Object clone() { }
    global Slack.TestHarness.Channel createDirectChannel(Slack.TestHarness.User user) { }
    global Slack.TestHarness.Enterprise createEnterprise(String enterpriseId, String enterpriseName) { }
    global Slack.TestHarness.Enterprise createEnterprise(String enterpriseName) { }
    global Slack.TestHarness.Channel createPrivateChannel(Slack.TestHarness.Team team, String channelName, String locale) { }
    global Slack.TestHarness.Channel createPrivateChannel(Slack.TestHarness.Team team, String channelName) { }
    global Slack.TestHarness.Channel createPrivateChannel(String channelName) { }
    global Slack.TestHarness.Channel createPublicChannel(Slack.TestHarness.Team team, String channelName, String locale) { }
    global Slack.TestHarness.Channel createPublicChannel(Slack.TestHarness.Team team, String channelName) { }
    global Slack.TestHarness.Channel createPublicChannel(String channelName) { }
    global Slack.TestHarness.Team createTeam(String teamDomain, Slack.TestHarness.Enterprise enterprise) { }
    global Slack.TestHarness.Team createTeam(String teamDomain) { }
    global Slack.TestHarness.User createUser(String username, String name, Slack.TestHarness.Team team, String locale) { }
    global Slack.TestHarness.User createUser(String username, String name, Slack.TestHarness.Team team) { }
    global Slack.TestHarness.User createUser(String username, String name) { }
    global Slack.TestHarness.UserSession createUserSession(Slack.TestHarness.User user, Slack.TestHarness.Channel defaultChannel) { }
    global Slack.TestHarness.UserSession createUserSession() { }
    global Slack.TestHarness.Channel getChannel(Slack.TestHarness.Team team, String channelId) { }
    global List<Slack.TestHarness.Channel> getChannels(Slack.TestHarness.Team team) { }
    global Slack.TestHarness.Channel getDefaultChannel() { }
    global Slack.TestHarness.Enterprise getDefaultEnterprise() { }
    global Slack.TestHarness.Team getDefaultTeam() { }
    global Slack.TestHarness.User getDefaultUser() { }
    global String getLocale() { }
    global Slack.TestHarness.User getUser(Slack.TestHarness.Team team, String userId) { }
    global Slack.TestHarness.User getUserByUsername(Slack.TestHarness.Team team, String username) { }
    global List<Slack.TestHarness.User> getUsers(Slack.TestHarness.Team team) { }
    global void setAppClientMock(Slack.AppClientMock appClientMock) { }
    global void setBotClientMock(Slack.BotClientMock botClientMock) { }
    global void setLocale(String locale) { }
    global void setUserClientMock(Slack.UserClientMock userClientMock) { }
    global String toString() { }
 
}
global class Team {
    global Object clone() { }
    global List<Slack.TestHarness.Channel> getChannels() { }
    global Slack.TestHarness.Enterprise getEnterprise() { }
    global String getId() { }
    global String getTeamDomain() { }
    global String toString() { }
 
}
global class Text {
    global Object clone() { }
    global String getText() { }
    global String toString() { }
 
}
global class TextInput {
    global Object clone() { }
    global String getInitialValue() { }
    global Integer getMaxLength() { }
    global Integer getMinLength() { }
    global String getName() { }
    global String getPlaceholder() { }
    global String getValue() { }
    global Boolean isMultiline() { }
    global void setValue(String value) { }
    global String toString() { }
 
}
global class TimePicker {
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global String getInitialValue() { }
    global String getName() { }
    global String getPlaceholder() { }
    global String getValue() { }
    global void setValue(String value) { }
    global String toString() { }
 
}
global class User {
    global Object clone() { }
    global String getId() { }
    global String getLocale() { }
    global String getName() { }
    global Slack.TestHarness.Team getTeam() { }
    global String getUsername() { }
    global String toString() { }
 
}
global class UserSession {
    global Object clone() { }
    global void closeAllModals() { }
    global void closeModal() { }
    global void executeEvent(Slack.Event event, Slack.App slackApp) { }
    global void executeGlobalShortcut(String globalShortcut, Slack.App slackApp) { }
    global void executeMessageShortcut(String messageShortcut, Slack.TestHarness.Message message, Slack.App slackApp) { }
    global void executeSlashCommand(String command, String text, Slack.App slackApp) { }
    global void executeSlashCommand(String command, Slack.App slackApp) { }
    global Slack.TestHarness.Home getAppHome() { }
    global Integer getMessageCount() { }
    global List<Slack.TestHarness.Message> getMessages() { }
    global List<Slack.TestHarness.Modal> getModalStack() { }
    global Slack.TestHarness.Channel getOpenChannel() { }
    global Slack.TestHarness.State getState() { }
    global Slack.TestHarness.Modal getTopModal() { }
    global Slack.TestHarness.User getUser() { }
    global Slack.TestHarness.Home openAppHome(Slack.App slackApp) { }
    global Slack.TestHarness.Channel openChannel(String channelId) { }
    global Slack.TestHarness.Message postMessage(String message) { }
    global String toString() { }
 
}
global class UsersSelect {
    global Object clone() { }
    global Slack.TestHarness.Confirm getConfirm() { }
    global List<String> getInitialMultiselectValue() { }
    global String getInitialValue() { }
    global Integer getMaxSelection() { }
    global List<String> getMultiselectValue() { }
    global String getName() { }
    global List<Slack.TestHarness.Option> getOptions() { }
    global String getPlaceholder() { }
    global String getValue() { }
    global Boolean isMultiselect() { }
    global void setMultiselectValue(List<String> listOfIdentifiers) { }
    global void setValue(String identifier) { }
    global String toString() { }
 
}
 
}