-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathseedData.sql
More file actions
708 lines (637 loc) · 404 KB
/
seedData.sql
File metadata and controls
708 lines (637 loc) · 404 KB
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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
CREATE DATABASE IF NOT EXISTS `checkmate` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `checkmate`;
-- MySQL dump 10.13 Distrib 8.0.36, for macos14 (arm64)
--
-- Host: 127.0.0.1 Database: checkmate
-- ------------------------------------------------------
-- Server version 8.0.41
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `__drizzle_migrations`
--
DROP TABLE IF EXISTS `__drizzle_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `__drizzle_migrations` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`hash` text NOT NULL,
`created_at` bigint DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `__drizzle_migrations`
--
LOCK TABLES `__drizzle_migrations` WRITE;
/*!40000 ALTER TABLE `__drizzle_migrations` DISABLE KEYS */;
INSERT INTO `__drizzle_migrations` VALUES (1,'660f6850a61f46e7c527663116046519aa3e3fa7f013cf9a3d0faa771501bb94',1743062555851),(2,'2ef02b975937d6c1c1283e35bd2d591663878b0774e3ad52f4b483d5beace3f2',1743062579884);
/*!40000 ALTER TABLE `__drizzle_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `automationStatus`
--
DROP TABLE IF EXISTS `automationStatus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `automationStatus` (
`automationStatusId` int NOT NULL AUTO_INCREMENT,
`automationStatusName` varchar(30) NOT NULL,
`createdBy` int DEFAULT NULL,
`createdOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`orgId` int NOT NULL,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedBy` int DEFAULT NULL,
`projectId` int DEFAULT NULL,
PRIMARY KEY (`automationStatusId`),
KEY `automationStatus_createdBy_users_userId_fk` (`createdBy`),
KEY `automationStatus_orgId_organisations_orgId_fk` (`orgId`),
KEY `automationStatus_updatedBy_users_userId_fk` (`updatedBy`),
KEY `automationStatusNameIndex` (`automationStatusName`),
KEY `automationStatus_projectId_projects_projectId_fk` (`projectId`),
CONSTRAINT `automationStatus_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `automationStatus_orgId_organisations_orgId_fk` FOREIGN KEY (`orgId`) REFERENCES `organisations` (`orgId`) ON DELETE CASCADE,
CONSTRAINT `automationStatus_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`) ON DELETE SET NULL,
CONSTRAINT `automationStatus_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `automationStatus`
--
LOCK TABLES `automationStatus` WRITE;
/*!40000 ALTER TABLE `automationStatus` DISABLE KEYS */;
INSERT INTO `automationStatus` VALUES (1,'Not Automatable',1,'2025-03-27 09:13:17',1,'2025-03-27 09:13:17',NULL,1),(2,'Automated',1,'2025-03-27 09:13:17',1,'2025-03-27 09:13:17',NULL,1),(3,'Automatable',1,'2025-03-27 09:13:17',1,'2025-03-27 09:13:17',NULL,1);
/*!40000 ALTER TABLE `automationStatus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `labelTestMap`
--
DROP TABLE IF EXISTS `labelTestMap`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `labelTestMap` (
`labelId` int NOT NULL,
`testId` int NOT NULL,
`createdOn` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`createdBy` int DEFAULT NULL,
`projectId` int NOT NULL,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedBy` int DEFAULT NULL,
UNIQUE KEY `labelToTest` (`labelId`,`testId`),
KEY `labelTestMap_testId_tests_testId_fk` (`testId`),
KEY `labelTestMap_createdBy_users_userId_fk` (`createdBy`),
KEY `labelTestMap_projectId_projects_projectId_fk` (`projectId`),
KEY `labelTestMap_updatedBy_users_userId_fk` (`updatedBy`),
KEY `labelTestMapLabelIdIndex` (`labelId`),
CONSTRAINT `labelTestMap_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `labelTestMap_labelId_labels_labelId_fk` FOREIGN KEY (`labelId`) REFERENCES `labels` (`labelId`) ON DELETE CASCADE,
CONSTRAINT `labelTestMap_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`) ON DELETE CASCADE,
CONSTRAINT `labelTestMap_testId_tests_testId_fk` FOREIGN KEY (`testId`) REFERENCES `tests` (`testId`) ON DELETE CASCADE,
CONSTRAINT `labelTestMap_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `labelTestMap`
--
LOCK TABLES `labelTestMap` WRITE;
/*!40000 ALTER TABLE `labelTestMap` DISABLE KEYS */;
INSERT INTO `labelTestMap` VALUES (3,2,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,3,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,7,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,10,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,12,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,14,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,15,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,19,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,24,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,30,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,31,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,33,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,34,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,35,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,38,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,40,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,45,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,56,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,58,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,61,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,68,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,71,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,73,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,75,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,77,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,84,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,85,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,87,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,88,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,94,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,103,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,104,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,105,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,107,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,110,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,112,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,113,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,114,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,116,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,121,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,128,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,143,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,148,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,161,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,169,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,172,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,174,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,179,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,183,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,192,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,193,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,194,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,196,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,209,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,210,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,218,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,220,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,231,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,238,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,242,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,243,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,249,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,251,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,254,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,255,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,256,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,273,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,274,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,275,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,277,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,281,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,289,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,291,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,304,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,305,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,310,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,311,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,314,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,316,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,330,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,336,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,338,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,339,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,341,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,346,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,350,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,351,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,352,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,354,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,355,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,356,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,360,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,365,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,368,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,371,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,376,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,377,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,385,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,397,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,405,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,408,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,418,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,421,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,424,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,425,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,428,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,432,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,444,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,446,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,449,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,450,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,451,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,453,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,455,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,457,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,462,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,468,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,469,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,470,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,474,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,488,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,489,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,490,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(3,494,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,1,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,4,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,13,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,21,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,22,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,23,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,25,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,26,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,27,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,28,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,32,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,42,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,43,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,47,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,49,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,50,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,51,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,52,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,53,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,60,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,62,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,64,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,70,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,79,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,90,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,96,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,97,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,98,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,99,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,100,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,102,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,108,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,122,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,123,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,125,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,126,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,133,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,138,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,139,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,140,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,142,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,145,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,147,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,149,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,156,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,157,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,158,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,162,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,166,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,178,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,184,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,189,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,190,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,197,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,198,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,199,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,202,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,203,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,207,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,213,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,216,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,219,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,224,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,225,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,228,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,229,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,232,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,233,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,245,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,250,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,257,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,258,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,259,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,261,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,262,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,263,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,264,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,265,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,271,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,276,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,278,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,279,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,283,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,293,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,295,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,296,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,297,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,300,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,301,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,302,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,306,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,320,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,322,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,326,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,328,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,337,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,343,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,353,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,358,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,359,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,362,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,363,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,367,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,370,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,378,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,384,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,388,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,390,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,396,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,401,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,407,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,430,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,436,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,437,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,461,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,463,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,465,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,466,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,472,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,483,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,487,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,493,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,495,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,496,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,498,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,499,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(5,500,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,5,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,8,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,9,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,11,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,17,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,29,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,37,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,39,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,41,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,44,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,46,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,54,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,57,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,59,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,63,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,65,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,72,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,74,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,76,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,80,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,82,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,83,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,93,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,101,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,106,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,109,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,111,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,115,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,120,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,127,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,129,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,130,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,132,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,134,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,135,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,144,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,146,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,152,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,153,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,154,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,163,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,165,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,175,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,181,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,182,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,185,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,195,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,204,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,205,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,206,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,212,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,217,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,222,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,226,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,227,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,230,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,234,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,236,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,244,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,247,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,252,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,253,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,266,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,269,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,272,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,285,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,287,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,290,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,294,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,298,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,299,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,303,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,312,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,315,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,321,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,325,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,331,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,334,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,345,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,348,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,349,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,357,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,361,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,369,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,372,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,381,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,383,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,391,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,392,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,395,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,400,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,403,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,404,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,410,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,413,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,416,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,419,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,420,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,426,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,427,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,429,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,433,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,434,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,439,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,447,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,452,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,458,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,459,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,460,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,471,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,473,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,481,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,484,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,485,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,486,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(6,491,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,6,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,16,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,18,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,20,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,36,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,48,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,55,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,66,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,67,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,69,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,78,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,81,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,86,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,89,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,91,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,92,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,95,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,117,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,118,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,119,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,124,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,131,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,136,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,137,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,141,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,150,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,151,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,155,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,159,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,160,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,164,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,167,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,168,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,170,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,171,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,173,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,176,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,177,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,180,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,186,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,187,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,188,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,191,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,200,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,201,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,208,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,211,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,214,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,215,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,221,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,223,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,235,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,237,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,239,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,240,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,241,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,246,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,248,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,260,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,267,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,268,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,270,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,280,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,282,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,284,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,286,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,288,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,292,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,307,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,308,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,309,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,313,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,317,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,318,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,319,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,323,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,324,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,327,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,329,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,332,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,333,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,335,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,340,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,342,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,344,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,347,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,364,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,366,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,373,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,374,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,375,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,379,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,380,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,382,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,386,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,387,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,389,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,393,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,394,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,398,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,399,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,402,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,406,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,409,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,411,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,412,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,414,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,415,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,417,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,422,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,423,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,431,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,435,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,438,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,440,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,441,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,442,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,443,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,445,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,448,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,454,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,456,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,464,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,467,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,475,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,476,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,477,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,478,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,479,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,480,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,482,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,492,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL),(8,497,'2025-03-27 09:13:23',1,1,'2025-03-27 09:13:23',NULL);
/*!40000 ALTER TABLE `labelTestMap` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `labels`
--
DROP TABLE IF EXISTS `labels`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `labels` (
`labelId` int NOT NULL AUTO_INCREMENT,
`labelName` varchar(100) NOT NULL,
`labelType` enum('System','Custom') DEFAULT NULL,
`createdOn` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`createdBy` int DEFAULT NULL,
`editHistory` json DEFAULT (_utf8mb4'[]'),
`projectId` int NOT NULL,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedBy` int DEFAULT NULL,
PRIMARY KEY (`labelId`),
UNIQUE KEY `labelProjectunique` (`labelName`,`projectId`),
KEY `labels_createdBy_users_userId_fk` (`createdBy`),
KEY `labels_projectId_projects_projectId_fk` (`projectId`),
KEY `labels_updatedBy_users_userId_fk` (`updatedBy`),
CONSTRAINT `labels_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `labels_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`) ON DELETE CASCADE,
CONSTRAINT `labels_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `labels`
--
LOCK TABLES `labels` WRITE;
/*!40000 ALTER TABLE `labels` DISABLE KEYS */;
INSERT INTO `labels` VALUES (1,'Regression','System','2025-03-27 09:13:17',1,'[]',1,'2025-03-27 09:13:17',NULL),(2,'Sanity','System','2025-03-27 09:13:17',1,'[]',1,'2025-03-27 09:13:17',NULL),(3,'Android','System','2025-03-27 09:13:17',1,'[]',1,'2025-03-27 09:13:17',NULL),(4,'Web','System','2025-03-27 09:13:17',1,'[]',1,'2025-03-27 09:13:17',NULL),(5,'iOS','System','2025-03-27 09:13:17',1,'[]',1,'2025-03-27 09:13:17',NULL),(6,'Backend','System','2025-03-27 09:13:17',1,'[]',1,'2025-03-27 09:13:17',NULL),(7,'Testing','System','2025-03-27 09:13:17',1,'[]',1,'2025-03-27 09:13:17',NULL),(8,'WalletFeature','Custom','2025-03-27 09:13:23',1,'[]',1,'2025-03-27 09:13:23',NULL);
/*!40000 ALTER TABLE `labels` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `organisations`
--
DROP TABLE IF EXISTS `organisations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `organisations` (
`orgId` int NOT NULL AUTO_INCREMENT,
`orgName` varchar(20) NOT NULL,
`createdBy` int DEFAULT NULL,
`createdOn` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`orgId`),
UNIQUE KEY `organisations_orgName_unique` (`orgName`),
KEY `organisations_createdBy_users_userId_fk` (`createdBy`),
CONSTRAINT `organisations_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `organisations`
--
LOCK TABLES `organisations` WRITE;
/*!40000 ALTER TABLE `organisations` DISABLE KEYS */;
INSERT INTO `organisations` VALUES (1,'Sample Organisation',1,'2025-03-27 09:13:17');
/*!40000 ALTER TABLE `organisations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `platform`
--
DROP TABLE IF EXISTS `platform`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `platform` (
`platformId` int NOT NULL AUTO_INCREMENT,
`platformName` varchar(30) NOT NULL,
`createdBy` int DEFAULT NULL,
`createdOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedBy` int DEFAULT NULL,
`orgId` int NOT NULL,
`projectId` int DEFAULT NULL,
PRIMARY KEY (`platformId`),
KEY `platform_createdBy_users_userId_fk` (`createdBy`),
KEY `platform_updatedBy_users_userId_fk` (`updatedBy`),
KEY `platform_orgId_organisations_orgId_fk` (`orgId`),
KEY `platformNameIndex` (`platformName`),
KEY `platform_projectId_projects_projectId_fk` (`projectId`),
CONSTRAINT `platform_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `platform_orgId_organisations_orgId_fk` FOREIGN KEY (`orgId`) REFERENCES `organisations` (`orgId`) ON DELETE CASCADE,
CONSTRAINT `platform_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`) ON DELETE SET NULL,
CONSTRAINT `platform_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `platform`
--
LOCK TABLES `platform` WRITE;
/*!40000 ALTER TABLE `platform` DISABLE KEYS */;
INSERT INTO `platform` VALUES (1,'All Platforms',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1),(2,'Only Android',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1),(3,'Only iOS',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1),(4,'Only Playstore',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1),(5,'Android Web And iOS Only',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1),(6,'Android Web and Playstore',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1);
/*!40000 ALTER TABLE `platform` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `priority`
--
DROP TABLE IF EXISTS `priority`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `priority` (
`priorityId` int NOT NULL AUTO_INCREMENT,
`priorityName` varchar(30) NOT NULL,
`createdBy` int DEFAULT NULL,
`createdOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedBy` int DEFAULT NULL,
`orgId` int NOT NULL,
PRIMARY KEY (`priorityId`),
KEY `priority_createdBy_users_userId_fk` (`createdBy`),
KEY `priority_updatedBy_users_userId_fk` (`updatedBy`),
KEY `priority_orgId_organisations_orgId_fk` (`orgId`),
KEY `priorityNameIndex` (`priorityName`),
CONSTRAINT `priority_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `priority_orgId_organisations_orgId_fk` FOREIGN KEY (`orgId`) REFERENCES `organisations` (`orgId`) ON DELETE CASCADE,
CONSTRAINT `priority_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `priority`
--
LOCK TABLES `priority` WRITE;
/*!40000 ALTER TABLE `priority` DISABLE KEYS */;
INSERT INTO `priority` VALUES (1,'Critical',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1),(2,'High',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1),(3,'Medium',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1),(4,'Low',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1);
/*!40000 ALTER TABLE `priority` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `projects`
--
DROP TABLE IF EXISTS `projects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `projects` (
`projectId` int NOT NULL AUTO_INCREMENT,
`projectName` varchar(50) NOT NULL,
`projectDescription` varchar(255) DEFAULT NULL,
`createdBy` int DEFAULT NULL,
`createdOn` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`orgId` int NOT NULL,
`testsCount` int DEFAULT '0',
`runsCount` int DEFAULT '0',
`status` enum('Active','Archived','Deleted') NOT NULL DEFAULT 'Active',
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedBy` int DEFAULT NULL,
PRIMARY KEY (`projectId`),
UNIQUE KEY `projectOrgUniqueIndex` (`projectName`,`orgId`),
KEY `projects_createdBy_users_userId_fk` (`createdBy`),
KEY `projects_orgId_organisations_orgId_fk` (`orgId`),
KEY `projects_updatedBy_users_userId_fk` (`updatedBy`),
KEY `projectsNameIndex` (`projectName`),
KEY `projectsProjectIdIndex` (`projectId`),
CONSTRAINT `projects_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `projects_orgId_organisations_orgId_fk` FOREIGN KEY (`orgId`) REFERENCES `organisations` (`orgId`) ON DELETE CASCADE,
CONSTRAINT `projects_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `projects`
--
LOCK TABLES `projects` WRITE;
/*!40000 ALTER TABLE `projects` DISABLE KEYS */;
INSERT INTO `projects` VALUES (1,'Website',NULL,1,'2025-03-27 09:13:17',1,0,0,'Active','2025-03-27 09:13:17',NULL);
/*!40000 ALTER TABLE `projects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `runs`
--
DROP TABLE IF EXISTS `runs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `runs` (
`runId` int NOT NULL AUTO_INCREMENT,
`projectId` int NOT NULL,
`status` enum('Active','Locked','Archived','Deleted') DEFAULT NULL,
`runDescription` varchar(255) DEFAULT NULL,
`refrence` varchar(255) DEFAULT NULL,
`createdBy` int DEFAULT NULL,
`createdOn` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedBy` int DEFAULT NULL,
`runName` varchar(50) NOT NULL,
`lockedBy` int DEFAULT NULL,
`lockedOn` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`runId`),
KEY `runs_createdBy_users_userId_fk` (`createdBy`),
KEY `runs_updatedBy_users_userId_fk` (`updatedBy`),
KEY `runs_lockedBy_users_userId_fk` (`lockedBy`),
KEY `runProjectIndex` (`projectId`,`status`),
CONSTRAINT `runs_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `runs_lockedBy_users_userId_fk` FOREIGN KEY (`lockedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `runs_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`) ON DELETE CASCADE,
CONSTRAINT `runs_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `runs`
--
LOCK TABLES `runs` WRITE;
/*!40000 ALTER TABLE `runs` DISABLE KEYS */;
INSERT INTO `runs` VALUES (1,1,'Active',NULL,NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:00',NULL,'Sample Run',NULL,NULL);
/*!40000 ALTER TABLE `runs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sections`
--
DROP TABLE IF EXISTS `sections`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sections` (
`sectionId` int NOT NULL AUTO_INCREMENT,
`sectionName` varchar(250) NOT NULL,
`sectionDescription` text,
`parentId` int DEFAULT NULL,
`editHistory` json DEFAULT (_utf8mb4'[]'),
`projectId` int NOT NULL,
`createdBy` int DEFAULT NULL,
`createdOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedBy` int DEFAULT NULL,
PRIMARY KEY (`sectionId`),
UNIQUE KEY `sectionHierarchyUnique` (`parentId`,`sectionName`,`projectId`),
KEY `sections_projectId_projects_projectId_fk` (`projectId`),
KEY `sections_createdBy_users_userId_fk` (`createdBy`),
KEY `sections_updatedBy_users_userId_fk` (`updatedBy`),
KEY `sectionNameIndex` (`sectionName`),
CONSTRAINT `sections_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `sections_parentId_sections_sectionId_fk` FOREIGN KEY (`parentId`) REFERENCES `sections` (`sectionId`) ON DELETE SET NULL,
CONSTRAINT `sections_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`) ON DELETE CASCADE,
CONSTRAINT `sections_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sections`
--
LOCK TABLES `sections` WRITE;
/*!40000 ALTER TABLE `sections` DISABLE KEYS */;
INSERT INTO `sections` VALUES (1,'Tag Management',NULL,NULL,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(2,'User Management',NULL,NULL,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(3,'Posting',NULL,2,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(4,'Answer Submission',NULL,3,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(5,'Voting System',NULL,NULL,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(6,'Voting System',NULL,5,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(7,'Account Management',NULL,NULL,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(8,'User Profile',NULL,7,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(9,'Question Creation',NULL,3,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(10,'Comment System',NULL,NULL,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(11,'Comment System',NULL,10,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(12,'Tag Management',NULL,1,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(13,'Search Functionality',NULL,NULL,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL),(14,'Search Functionality',NULL,13,'[]',1,1,'2025-03-27 09:13:19','2025-03-27 09:13:19',NULL);
/*!40000 ALTER TABLE `sections` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `squads`
--
DROP TABLE IF EXISTS `squads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `squads` (
`squadId` int NOT NULL AUTO_INCREMENT,
`squadName` varchar(100) NOT NULL,
`createdBy` int DEFAULT NULL,
`createdOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`projectId` int NOT NULL,
`editInfo` json DEFAULT (_utf8mb4'[]'),
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedBy` int DEFAULT NULL,
PRIMARY KEY (`squadId`),
UNIQUE KEY `squadNameUnique` (`squadName`,`projectId`),
KEY `squads_createdBy_users_userId_fk` (`createdBy`),
KEY `squads_updatedBy_users_userId_fk` (`updatedBy`),
KEY `squadsSquadNameIndex` (`squadName`),
KEY `squadsProjectIdIndex` (`projectId`),
CONSTRAINT `squads_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `squads_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`),
CONSTRAINT `squads_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `squads`
--
LOCK TABLES `squads` WRITE;
/*!40000 ALTER TABLE `squads` DISABLE KEYS */;
INSERT INTO `squads` VALUES (1,'Backend',1,'2025-03-27 09:13:21',1,'[]','2025-03-27 09:13:21',NULL),(2,'DevOps',1,'2025-03-27 09:13:21',1,'[]','2025-03-27 09:13:21',NULL),(3,'UX',1,'2025-03-27 09:13:21',1,'[]','2025-03-27 09:13:21',NULL),(4,'QA',1,'2025-03-27 09:13:21',1,'[]','2025-03-27 09:13:21',NULL),(5,'Frontend',1,'2025-03-27 09:13:21',1,'[]','2025-03-27 09:13:21',NULL);
/*!40000 ALTER TABLE `squads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `testCoveredBy`
--
DROP TABLE IF EXISTS `testCoveredBy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `testCoveredBy` (
`testCoveredById` int NOT NULL AUTO_INCREMENT,
`testCoveredByName` varchar(30) NOT NULL,
`createdBy` int DEFAULT NULL,
`createdOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedBy` int DEFAULT NULL,
`orgId` int NOT NULL,
`projectId` int DEFAULT NULL,
PRIMARY KEY (`testCoveredById`),
KEY `testCoveredBy_createdBy_users_userId_fk` (`createdBy`),
KEY `testCoveredBy_updatedBy_users_userId_fk` (`updatedBy`),
KEY `testCoveredBy_orgId_organisations_orgId_fk` (`orgId`),
KEY `testCoveredByNameIndex` (`testCoveredByName`),
KEY `testCoveredBy_projectId_projects_projectId_fk` (`projectId`),
CONSTRAINT `testCoveredBy_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `testCoveredBy_orgId_organisations_orgId_fk` FOREIGN KEY (`orgId`) REFERENCES `organisations` (`orgId`) ON DELETE CASCADE,
CONSTRAINT `testCoveredBy_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`) ON DELETE SET NULL,
CONSTRAINT `testCoveredBy_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `testCoveredBy`
--
LOCK TABLES `testCoveredBy` WRITE;
/*!40000 ALTER TABLE `testCoveredBy` DISABLE KEYS */;
INSERT INTO `testCoveredBy` VALUES (1,'Manual',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1),(2,'E2E',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1),(3,'Unit',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1),(4,'Integration',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1),(5,'Contract',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',NULL,1,1);
/*!40000 ALTER TABLE `testCoveredBy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `testRunMap`
--
DROP TABLE IF EXISTS `testRunMap`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `testRunMap` (
`testRunMapId` int NOT NULL AUTO_INCREMENT,
`runId` int DEFAULT NULL,
`testId` int DEFAULT NULL,
`projectId` int NOT NULL,
`isIncluded` tinyint(1) DEFAULT '1',
`status` varchar(25) NOT NULL DEFAULT 'Untested',
`statusUpdates` json DEFAULT NULL,
`updatedBy` int DEFAULT NULL,
`createdOn` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`comment` varchar(200) DEFAULT NULL,
PRIMARY KEY (`testRunMapId`),
KEY `testRunMap_testId_tests_testId_fk` (`testId`),
KEY `testRunMap_projectId_projects_projectId_fk` (`projectId`),
KEY `testRunMap_updatedBy_users_userId_fk` (`updatedBy`),
KEY `testRunMapRunIdIndex` (`runId`),
KEY `testRunMapStatusIndex` (`status`),
CONSTRAINT `testRunMap_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`) ON DELETE CASCADE,
CONSTRAINT `testRunMap_runId_runs_runId_fk` FOREIGN KEY (`runId`) REFERENCES `runs` (`runId`) ON DELETE CASCADE,
CONSTRAINT `testRunMap_testId_tests_testId_fk` FOREIGN KEY (`testId`) REFERENCES `tests` (`testId`) ON DELETE CASCADE,
CONSTRAINT `testRunMap_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=501 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `testRunMap`
--
LOCK TABLES `testRunMap` WRITE;
/*!40000 ALTER TABLE `testRunMap` DISABLE KEYS */;
INSERT INTO `testRunMap` VALUES (1,1,1,1,1,'Passed',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(2,1,2,1,1,'Passed',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(3,1,3,1,1,'Passed',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(4,1,4,1,1,'Passed',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(5,1,5,1,1,'Passed',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(6,1,6,1,1,'Failed',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(7,1,7,1,1,'Failed',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(8,1,8,1,1,'Failed',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(9,1,9,1,1,'Failed',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(10,1,10,1,1,'Failed',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(11,1,11,1,1,'InProgress',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(12,1,12,1,1,'InProgress',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(13,1,13,1,1,'InProgress',NULL,1,'2025-03-27 09:47:11','2025-03-27 10:08:25',''),(14,1,14,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(15,1,15,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(16,1,16,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(17,1,17,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(18,1,18,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(19,1,19,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(20,1,20,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(21,1,21,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(22,1,22,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(23,1,23,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(24,1,24,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(25,1,25,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(26,1,26,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(27,1,27,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(28,1,28,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(29,1,29,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(30,1,30,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(31,1,31,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(32,1,32,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(33,1,33,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(34,1,34,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(35,1,35,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(36,1,36,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(37,1,37,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(38,1,38,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(39,1,39,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(40,1,40,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(41,1,41,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(42,1,42,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(43,1,43,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(44,1,44,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(45,1,45,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(46,1,46,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(47,1,47,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(48,1,48,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(49,1,49,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(50,1,50,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(51,1,51,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(52,1,52,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(53,1,53,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(54,1,54,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(55,1,55,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(56,1,56,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(57,1,57,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(58,1,58,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(59,1,59,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(60,1,60,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(61,1,61,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(62,1,62,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(63,1,63,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(64,1,64,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(65,1,65,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(66,1,66,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(67,1,67,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(68,1,68,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(69,1,69,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(70,1,70,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(71,1,71,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(72,1,72,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(73,1,73,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(74,1,74,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(75,1,75,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(76,1,76,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(77,1,77,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(78,1,78,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(79,1,79,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(80,1,80,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(81,1,81,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(82,1,82,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(83,1,83,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(84,1,84,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(85,1,85,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(86,1,86,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(87,1,87,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(88,1,88,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(89,1,89,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(90,1,90,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(91,1,91,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(92,1,92,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(93,1,93,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(94,1,94,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(95,1,95,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(96,1,96,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(97,1,97,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(98,1,98,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(99,1,99,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(100,1,100,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(101,1,101,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(102,1,102,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(103,1,103,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(104,1,104,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(105,1,105,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(106,1,106,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(107,1,107,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(108,1,108,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(109,1,109,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(110,1,110,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(111,1,111,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(112,1,112,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(113,1,113,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(114,1,114,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(115,1,115,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(116,1,116,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(117,1,117,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(118,1,118,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(119,1,119,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(120,1,120,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(121,1,121,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(122,1,122,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(123,1,123,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(124,1,124,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(125,1,125,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(126,1,126,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(127,1,127,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(128,1,128,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(129,1,129,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(130,1,130,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(131,1,131,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(132,1,132,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(133,1,133,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(134,1,134,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(135,1,135,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(136,1,136,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(137,1,137,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(138,1,138,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(139,1,139,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(140,1,140,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(141,1,141,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(142,1,142,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(143,1,143,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(144,1,144,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(145,1,145,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(146,1,146,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(147,1,147,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(148,1,148,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(149,1,149,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(150,1,150,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(151,1,151,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(152,1,152,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(153,1,153,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(154,1,154,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(155,1,155,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(156,1,156,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(157,1,157,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(158,1,158,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(159,1,159,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(160,1,160,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(161,1,161,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(162,1,162,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(163,1,163,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(164,1,164,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(165,1,165,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(166,1,166,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(167,1,167,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(168,1,168,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(169,1,169,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(170,1,170,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(171,1,171,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(172,1,172,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(173,1,173,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(174,1,174,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(175,1,175,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(176,1,176,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(177,1,177,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(178,1,178,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(179,1,179,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(180,1,180,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(181,1,181,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(182,1,182,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(183,1,183,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(184,1,184,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(185,1,185,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(186,1,186,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(187,1,187,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(188,1,188,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(189,1,189,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(190,1,190,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(191,1,191,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(192,1,192,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(193,1,193,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(194,1,194,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(195,1,195,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(196,1,196,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(197,1,197,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(198,1,198,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(199,1,199,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(200,1,200,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(201,1,201,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(202,1,202,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(203,1,203,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(204,1,204,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(205,1,205,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(206,1,206,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(207,1,207,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(208,1,208,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(209,1,209,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(210,1,210,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(211,1,211,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(212,1,212,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(213,1,213,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(214,1,214,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(215,1,215,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(216,1,216,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(217,1,217,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(218,1,218,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(219,1,219,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(220,1,220,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(221,1,221,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(222,1,222,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(223,1,223,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(224,1,224,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(225,1,225,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(226,1,226,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(227,1,227,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(228,1,228,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(229,1,229,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(230,1,230,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(231,1,231,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(232,1,232,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(233,1,233,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(234,1,234,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(235,1,235,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(236,1,236,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(237,1,237,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(238,1,238,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(239,1,239,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(240,1,240,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(241,1,241,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(242,1,242,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(243,1,243,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(244,1,244,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(245,1,245,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(246,1,246,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(247,1,247,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(248,1,248,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(249,1,249,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(250,1,250,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(251,1,251,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(252,1,252,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(253,1,253,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(254,1,254,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(255,1,255,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(256,1,256,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(257,1,257,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(258,1,258,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(259,1,259,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(260,1,260,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(261,1,261,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(262,1,262,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(263,1,263,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(264,1,264,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(265,1,265,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(266,1,266,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(267,1,267,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(268,1,268,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(269,1,269,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(270,1,270,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(271,1,271,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(272,1,272,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(273,1,273,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(274,1,274,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(275,1,275,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(276,1,276,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(277,1,277,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(278,1,278,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(279,1,279,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(280,1,280,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(281,1,281,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(282,1,282,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(283,1,283,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(284,1,284,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(285,1,285,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(286,1,286,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(287,1,287,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(288,1,288,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(289,1,289,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(290,1,290,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(291,1,291,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(292,1,292,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(293,1,293,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(294,1,294,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(295,1,295,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(296,1,296,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(297,1,297,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(298,1,298,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(299,1,299,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(300,1,300,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(301,1,301,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(302,1,302,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(303,1,303,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(304,1,304,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(305,1,305,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(306,1,306,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(307,1,307,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(308,1,308,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(309,1,309,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(310,1,310,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(311,1,311,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(312,1,312,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(313,1,313,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(314,1,314,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(315,1,315,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(316,1,316,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(317,1,317,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(318,1,318,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(319,1,319,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(320,1,320,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(321,1,321,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(322,1,322,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(323,1,323,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(324,1,324,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(325,1,325,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(326,1,326,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(327,1,327,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(328,1,328,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(329,1,329,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(330,1,330,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(331,1,331,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(332,1,332,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(333,1,333,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(334,1,334,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(335,1,335,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(336,1,336,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(337,1,337,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(338,1,338,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(339,1,339,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(340,1,340,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(341,1,341,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(342,1,342,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(343,1,343,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(344,1,344,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(345,1,345,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(346,1,346,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(347,1,347,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(348,1,348,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(349,1,349,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(350,1,350,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(351,1,351,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(352,1,352,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(353,1,353,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(354,1,354,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(355,1,355,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(356,1,356,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(357,1,357,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(358,1,358,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(359,1,359,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(360,1,360,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(361,1,361,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(362,1,362,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(363,1,363,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(364,1,364,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(365,1,365,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(366,1,366,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(367,1,367,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(368,1,368,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(369,1,369,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(370,1,370,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(371,1,371,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(372,1,372,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(373,1,373,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(374,1,374,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(375,1,375,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(376,1,376,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(377,1,377,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(378,1,378,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(379,1,379,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(380,1,380,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(381,1,381,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(382,1,382,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(383,1,383,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(384,1,384,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(385,1,385,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(386,1,386,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(387,1,387,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(388,1,388,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(389,1,389,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(390,1,390,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(391,1,391,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(392,1,392,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(393,1,393,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(394,1,394,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(395,1,395,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(396,1,396,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(397,1,397,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(398,1,398,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(399,1,399,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(400,1,400,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(401,1,401,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(402,1,402,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(403,1,403,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(404,1,404,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(405,1,405,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(406,1,406,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(407,1,407,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(408,1,408,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(409,1,409,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(410,1,410,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(411,1,411,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(412,1,412,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(413,1,413,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(414,1,414,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(415,1,415,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(416,1,416,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(417,1,417,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(418,1,418,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(419,1,419,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(420,1,420,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(421,1,421,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(422,1,422,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(423,1,423,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(424,1,424,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(425,1,425,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(426,1,426,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(427,1,427,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(428,1,428,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(429,1,429,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(430,1,430,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(431,1,431,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(432,1,432,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(433,1,433,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(434,1,434,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(435,1,435,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(436,1,436,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(437,1,437,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(438,1,438,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(439,1,439,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(440,1,440,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(441,1,441,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(442,1,442,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(443,1,443,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(444,1,444,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(445,1,445,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(446,1,446,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(447,1,447,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(448,1,448,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(449,1,449,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(450,1,450,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(451,1,451,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(452,1,452,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(453,1,453,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(454,1,454,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(455,1,455,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(456,1,456,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(457,1,457,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(458,1,458,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(459,1,459,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(460,1,460,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(461,1,461,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(462,1,462,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(463,1,463,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(464,1,464,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(465,1,465,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(466,1,466,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(467,1,467,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(468,1,468,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(469,1,469,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(470,1,470,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(471,1,471,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(472,1,472,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(473,1,473,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(474,1,474,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(475,1,475,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(476,1,476,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(477,1,477,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(478,1,478,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(479,1,479,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(480,1,480,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(481,1,481,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(482,1,482,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(483,1,483,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(484,1,484,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(485,1,485,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(486,1,486,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(487,1,487,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(488,1,488,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(489,1,489,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(490,1,490,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(491,1,491,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(492,1,492,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(493,1,493,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(494,1,494,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(495,1,495,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(496,1,496,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(497,1,497,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(498,1,498,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(499,1,499,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL),(500,1,500,1,1,'Untested',NULL,NULL,'2025-03-27 09:47:11','2025-03-27 09:47:11',NULL);
/*!40000 ALTER TABLE `testRunMap` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `testRunsStatusHistory`
--
DROP TABLE IF EXISTS `testRunsStatusHistory`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `testRunsStatusHistory` (
`testRunsStatusHistoryId` int NOT NULL AUTO_INCREMENT,
`runId` int DEFAULT NULL,
`testId` int DEFAULT NULL,
`status` varchar(25) NOT NULL,
`updatedBy` int DEFAULT NULL,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`createdOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`comment` text,
`totalTestCase` int DEFAULT '0',
`passedTestCase` int DEFAULT '0',
`failedTestCase` int DEFAULT '0',
`untestedTestCase` int DEFAULT '0',
PRIMARY KEY (`testRunsStatusHistoryId`),
KEY `testRunsStatusHistory_testId_tests_testId_fk` (`testId`),
KEY `testRunsStatusHistory_updatedBy_users_userId_fk` (`updatedBy`),
KEY `testRunsStatusHistoryRunIdIndex` (`runId`,`testId`),
CONSTRAINT `testRunsStatusHistory_runId_runs_runId_fk` FOREIGN KEY (`runId`) REFERENCES `runs` (`runId`) ON DELETE CASCADE,
CONSTRAINT `testRunsStatusHistory_testId_tests_testId_fk` FOREIGN KEY (`testId`) REFERENCES `tests` (`testId`) ON DELETE CASCADE,
CONSTRAINT `testRunsStatusHistory_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `testRunsStatusHistory`
--
LOCK TABLES `testRunsStatusHistory` WRITE;
/*!40000 ALTER TABLE `testRunsStatusHistory` DISABLE KEYS */;
INSERT INTO `testRunsStatusHistory` VALUES (1,1,1,'Passed',1,'2025-03-27 10:08:44','2025-03-27 09:47:21','',0,0,0,0),(2,1,2,'Passed',1,'2025-03-27 10:08:44','2025-03-27 09:47:21','',0,0,0,0),(3,1,3,'Passed',1,'2025-03-27 10:08:44','2025-03-27 09:47:21','',0,0,0,0),(4,1,4,'Passed',1,'2025-03-27 10:08:44','2025-03-27 09:47:21','',0,0,0,0),(5,1,5,'Passed',1,'2025-03-27 10:08:44','2025-03-27 09:47:21','',0,0,0,0),(6,1,6,'Failed',1,'2025-03-27 10:08:44','2025-03-27 09:47:30','',0,0,0,0),(7,1,7,'Failed',1,'2025-03-27 10:08:44','2025-03-27 09:47:30','',0,0,0,0),(8,1,8,'Failed',1,'2025-03-27 10:08:44','2025-03-27 09:47:30','',0,0,0,0),(9,1,9,'Failed',1,'2025-03-27 10:08:44','2025-03-27 09:47:30','',0,0,0,0),(10,1,10,'Failed',1,'2025-03-27 10:08:44','2025-03-27 09:47:30','',0,0,0,0),(11,1,11,'InProgress',1,'2025-03-27 10:08:44','2025-03-27 09:47:40','',0,0,0,0),(12,1,12,'InProgress',1,'2025-03-27 10:08:44','2025-03-27 09:47:40','',0,0,0,0),(13,1,13,'InProgress',1,'2025-03-27 10:08:44','2025-03-27 09:47:40','',0,0,0,0);
/*!40000 ALTER TABLE `testRunsStatusHistory` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tests`
--
DROP TABLE IF EXISTS `tests`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tests` (
`testId` int NOT NULL AUTO_INCREMENT,
`sectionId` int DEFAULT NULL,
`projectId` int NOT NULL,
`title` varchar(750) NOT NULL,
`squadId` int DEFAULT NULL,
`priorityId` int DEFAULT NULL,
`typeId` int DEFAULT NULL,
`automationStatusId` int DEFAULT NULL,
`testCoveredById` int DEFAULT NULL,
`preConditions` text,
`steps` text,
`expectedResult` text,
`assignedTo` int DEFAULT NULL,
`createdBy` int DEFAULT NULL,
`updatedBy` int DEFAULT NULL,
`createdOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`testStatusHistory` json DEFAULT NULL,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`editInfo` json DEFAULT (_utf8mb4'[]'),
`platformId` int DEFAULT NULL,
`createdByName` varchar(100) DEFAULT NULL,
`jiraTicket` varchar(100) DEFAULT NULL,
`defects` varchar(100) DEFAULT NULL,
`attachments` varchar(100) DEFAULT NULL,
`status` enum('Active','Archived','Deleted') NOT NULL DEFAULT 'Active',
`reference` text,
`additionalGroups` text,
`automationId` varchar(100) DEFAULT NULL,
`description` text,
`custom1` text,
`custom2` text,
`custom3` text,
`custom4` text,
PRIMARY KEY (`testId`),
KEY `tests_sectionId_sections_sectionId_fk` (`sectionId`),
KEY `tests_squadId_squads_squadId_fk` (`squadId`),
KEY `tests_priorityId_priority_priorityId_fk` (`priorityId`),
KEY `tests_typeId_type_typeId_fk` (`typeId`),
KEY `tests_automationStatusId_automationStatus_automationStatusId_fk` (`automationStatusId`),
KEY `tests_testCoveredById_testCoveredBy_testCoveredById_fk` (`testCoveredById`),
KEY `tests_assignedTo_users_userId_fk` (`assignedTo`),
KEY `tests_createdBy_users_userId_fk` (`createdBy`),
KEY `tests_updatedBy_users_userId_fk` (`updatedBy`),
KEY `tests_platformId_platform_platformId_fk` (`platformId`),
KEY `projectSquadIndex` (`projectId`,`squadId`),
KEY `statusIndex` (`status`),
KEY `titleIndex` (`title`),
CONSTRAINT `tests_assignedTo_users_userId_fk` FOREIGN KEY (`assignedTo`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `tests_automationStatusId_automationStatus_automationStatusId_fk` FOREIGN KEY (`automationStatusId`) REFERENCES `automationStatus` (`automationStatusId`) ON DELETE SET NULL,
CONSTRAINT `tests_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `tests_platformId_platform_platformId_fk` FOREIGN KEY (`platformId`) REFERENCES `platform` (`platformId`) ON DELETE SET NULL,
CONSTRAINT `tests_priorityId_priority_priorityId_fk` FOREIGN KEY (`priorityId`) REFERENCES `priority` (`priorityId`) ON DELETE SET NULL,
CONSTRAINT `tests_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`) ON DELETE CASCADE,
CONSTRAINT `tests_sectionId_sections_sectionId_fk` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`sectionId`) ON DELETE SET NULL,
CONSTRAINT `tests_squadId_squads_squadId_fk` FOREIGN KEY (`squadId`) REFERENCES `squads` (`squadId`) ON DELETE SET NULL,
CONSTRAINT `tests_testCoveredById_testCoveredBy_testCoveredById_fk` FOREIGN KEY (`testCoveredById`) REFERENCES `testCoveredBy` (`testCoveredById`) ON DELETE SET NULL,
CONSTRAINT `tests_typeId_type_typeId_fk` FOREIGN KEY (`typeId`) REFERENCES `type` (`typeId`) ON DELETE SET NULL,
CONSTRAINT `tests_updatedBy_users_userId_fk` FOREIGN KEY (`updatedBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=501 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tests`
--
LOCK TABLES `tests` WRITE;
/*!40000 ALTER TABLE `tests` DISABLE KEYS */;
INSERT INTO `tests` VALUES (1,1,1,'Validate comment system functionality under interaction > comments',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0001','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(2,12,1,'Validate answer submission functionality under user management > posting > answer submission',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(3,11,1,'Validate search functionality functionality under content discovery > search',4,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(4,9,1,'Validate comment system functionality under interaction > comments',4,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0006','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(5,4,1,'Validate search functionality functionality under content discovery > search',1,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0009',NULL,NULL,NULL,NULL,NULL),(6,8,1,'Validate voting system functionality under interaction > voting',5,4,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(7,11,1,'Validate voting system functionality under interaction > voting',5,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0007','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(8,4,1,'Validate answer submission functionality under user management > posting > answer submission',5,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,NULL,NULL,NULL,NULL,NULL),(9,6,1,'Validate tag management functionality under content management > tags',2,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,6,1,'Validate comment system functionality under interaction > comments',5,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0011',NULL,NULL,NULL,NULL,NULL),(11,4,1,'Validate tag management functionality under content management > tags',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(12,4,1,'Validate question creation functionality under user management > posting > question creation',3,4,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(13,6,1,'Validate tag management functionality under content management > tags',4,4,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0016','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(14,6,1,'Validate tag management functionality under content management > tags',2,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0022',NULL,NULL,NULL,NULL,NULL),(15,4,1,'Validate tag management functionality under content management > tags',NULL,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0023',NULL,NULL,NULL,NULL,NULL),(16,6,1,'Validate comment system functionality under interaction > comments',NULL,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(17,14,1,'Validate voting system functionality under interaction > voting',1,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0025','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(18,11,1,'Validate question creation functionality under user management > posting > question creation',5,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(19,4,1,'Validate user profile functionality under account management > user profile',5,2,NULL,2,1,'',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0027','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(20,9,1,'Validate comment system functionality under interaction > comments',5,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0028','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(21,8,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0029',NULL,NULL,NULL,NULL,NULL),(22,6,1,'Validate search functionality functionality under content discovery > search',2,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(23,8,1,'Validate voting system functionality under interaction > voting',4,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0032',NULL,NULL,NULL,NULL,NULL),(24,14,1,'Validate comment system functionality under interaction > comments',2,4,NULL,3,1,'',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0030','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(25,8,1,'Validate voting system functionality under interaction > voting',5,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0033',NULL,NULL,NULL,NULL,NULL),(26,6,1,'Validate search functionality functionality under content discovery > search',3,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,NULL,NULL,NULL,NULL,NULL),(27,8,1,'Validate question creation functionality under user management > posting > question creation',2,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0035','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(28,6,1,'Validate voting system functionality under interaction > voting',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0036','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(29,11,1,'Validate answer submission functionality under user management > posting > answer submission',3,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0039','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(30,6,1,'Validate voting system functionality under interaction > voting',3,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,NULL,NULL,NULL,NULL,NULL),(31,4,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0038',NULL,NULL,NULL,NULL,NULL),(32,14,1,'Validate tag management functionality under content management > tags',2,2,NULL,3,1,'',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(33,6,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0041','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(34,14,1,'Validate comment system functionality under interaction > comments',NULL,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0042',NULL,NULL,NULL,NULL,NULL),(35,14,1,'Validate question creation functionality under user management > posting > question creation',NULL,3,NULL,1,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(36,11,1,'Validate search functionality functionality under content discovery > search',5,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0045','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(37,4,1,'Validate question creation functionality under user management > posting > question creation',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(38,8,1,'Validate question creation functionality under user management > posting > question creation',5,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0046','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(39,4,1,'Validate tag management functionality under content management > tags',1,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0047','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(40,9,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0048','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(41,14,1,'Validate user profile functionality under account management > user profile',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(42,6,1,'Validate voting system functionality under interaction > voting',5,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0049','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(43,4,1,'Validate tag management functionality under content management > tags',NULL,1,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0051',NULL,NULL,NULL,NULL,NULL),(44,12,1,'Validate voting system functionality under interaction > voting',1,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0052','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(45,6,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0053','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(46,11,1,'Validate user profile functionality under account management > user profile',2,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,NULL,NULL,NULL,NULL,NULL),(47,9,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(48,4,1,'Validate voting system functionality under interaction > voting',4,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0054',NULL,NULL,NULL,NULL,NULL),(49,4,1,'Validate comment system functionality under interaction > comments',3,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(50,11,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(51,8,1,'Validate user profile functionality under account management > user profile',4,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0059',NULL,NULL,NULL,NULL,NULL),(52,6,1,'Validate question creation functionality under user management > posting > question creation',4,4,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0060',NULL,NULL,NULL,NULL,NULL),(53,9,1,'Validate answer submission functionality under user management > posting > answer submission',4,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(54,8,1,'Validate user profile functionality under account management > user profile',3,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(55,8,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0063',NULL,NULL,NULL,NULL,NULL),(56,14,1,'Validate answer submission functionality under user management > posting > answer submission',1,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0064',NULL,NULL,NULL,NULL,NULL),(57,9,1,'Validate tag management functionality under content management > tags',4,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0065',NULL,NULL,NULL,NULL,NULL),(58,12,1,'Validate comment system functionality under interaction > comments',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0066','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(59,8,1,'Validate tag management functionality under content management > tags',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0067','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(60,9,1,'Validate voting system functionality under interaction > voting',5,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(61,14,1,'Validate answer submission functionality under user management > posting > answer submission',5,3,NULL,1,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(62,12,1,'Validate tag management functionality under content management > tags',1,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(63,11,1,'Validate user profile functionality under account management > user profile',2,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0070','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(64,14,1,'Validate search functionality functionality under content discovery > search',NULL,1,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0072','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(65,12,1,'Validate tag management functionality under content management > tags',5,1,NULL,3,1,'',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0073',NULL,NULL,NULL,NULL,NULL),(66,4,1,'Validate question creation functionality under user management > posting > question creation',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(67,6,1,'Validate voting system functionality under interaction > voting',3,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(68,14,1,'Validate voting system functionality under interaction > voting',1,1,NULL,3,1,'',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0076','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(69,4,1,'Validate answer submission functionality under user management > posting > answer submission',1,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(70,9,1,'Validate answer submission functionality under user management > posting > answer submission',5,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(71,11,1,'Validate comment system functionality under interaction > comments',1,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(72,8,1,'Validate voting system functionality under interaction > voting',2,4,NULL,3,1,'',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(73,9,1,'Validate question creation functionality under user management > posting > question creation',3,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0080','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(74,4,1,'Validate user profile functionality under account management > user profile',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0082','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(75,9,1,'Validate voting system functionality under interaction > voting',2,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0084',NULL,NULL,NULL,NULL,NULL),(76,4,1,'Validate question creation functionality under user management > posting > question creation',NULL,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(77,8,1,'Validate answer submission functionality under user management > posting > answer submission',1,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(78,12,1,'Validate voting system functionality under interaction > voting',4,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0086','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(79,4,1,'Validate question creation functionality under user management > posting > question creation',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0087','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(80,8,1,'Validate user profile functionality under account management > user profile',1,3,NULL,3,1,'',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0088','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(81,11,1,'Validate user profile functionality under account management > user profile',1,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0089','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(82,8,1,'Validate comment system functionality under interaction > comments',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0090',NULL,NULL,NULL,NULL,NULL),(83,9,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(84,12,1,'Validate user profile functionality under account management > user profile',4,3,NULL,3,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(85,4,1,'Validate search functionality functionality under content discovery > search',1,1,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0093',NULL,NULL,NULL,NULL,NULL),(86,11,1,'Validate user profile functionality under account management > user profile',4,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0092',NULL,NULL,NULL,NULL,NULL),(87,12,1,'Validate answer submission functionality under user management > posting > answer submission',5,3,NULL,1,1,'',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0096','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(88,6,1,'Validate comment system functionality under interaction > comments',3,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0094','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(89,9,1,'Validate comment system functionality under interaction > comments',4,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(90,6,1,'Validate answer submission functionality under user management > posting > answer submission',5,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0097','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(91,9,1,'Validate answer submission functionality under user management > posting > answer submission',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0099','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(92,9,1,'Validate tag management functionality under content management > tags',3,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0100',NULL,NULL,NULL,NULL,NULL),(93,4,1,'Validate search functionality functionality under content discovery > search',4,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0019',NULL,NULL,NULL,NULL,NULL),(94,9,1,'Validate tag management functionality under content management > tags',NULL,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0017',NULL,NULL,NULL,NULL,NULL),(95,12,1,'Validate user profile functionality under account management > user profile',2,4,NULL,1,1,'',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(96,8,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(97,12,1,'Validate search functionality functionality under content discovery > search',5,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0020','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(98,4,1,'Validate search functionality functionality under content discovery > search',5,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0015','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(99,4,1,'Validate user profile functionality under account management > user profile',1,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0012','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(100,4,1,'Validate tag management functionality under content management > tags',4,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(101,4,1,'Validate voting system functionality under interaction > voting',3,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0102',NULL,NULL,NULL,NULL,NULL),(102,14,1,'Validate question creation functionality under user management > posting > question creation',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(103,11,1,'Validate tag management functionality under content management > tags',4,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(104,6,1,'Validate user profile functionality under account management > user profile',4,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0105',NULL,NULL,NULL,NULL,NULL),(105,9,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(106,11,1,'Validate comment system functionality under interaction > comments',NULL,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(107,12,1,'Validate comment system functionality under interaction > comments',1,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0104','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(108,12,1,'Validate tag management functionality under content management > tags',NULL,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(109,12,1,'Validate search functionality functionality under content discovery > search',3,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(110,12,1,'Validate search functionality functionality under content discovery > search',NULL,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0110',NULL,NULL,NULL,NULL,NULL),(111,6,1,'Validate tag management functionality under content management > tags',4,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0111',NULL,NULL,NULL,NULL,NULL),(112,11,1,'Validate user profile functionality under account management > user profile',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0112','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(113,8,1,'Validate tag management functionality under content management > tags',NULL,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,NULL,NULL,NULL,NULL,NULL),(114,11,1,'Validate user profile functionality under account management > user profile',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0114','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(115,4,1,'Validate search functionality functionality under content discovery > search',3,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0115',NULL,NULL,NULL,NULL,NULL),(116,6,1,'Validate question creation functionality under user management > posting > question creation',4,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0117','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(117,8,1,'Validate voting system functionality under interaction > voting',4,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(118,6,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,NULL,NULL,NULL,NULL,NULL),(119,4,1,'Validate tag management functionality under content management > tags',4,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0119','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(120,9,1,'Validate search functionality functionality under content discovery > search',1,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0120','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(121,8,1,'Validate voting system functionality under interaction > voting',NULL,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0122','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(122,6,1,'Validate question creation functionality under user management > posting > question creation',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0121','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(123,11,1,'Validate comment system functionality under interaction > comments',1,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(124,12,1,'Validate question creation functionality under user management > posting > question creation',1,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0125','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(125,8,1,'Validate tag management functionality under content management > tags',1,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0124','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(126,8,1,'Validate voting system functionality under interaction > voting',1,1,NULL,3,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0126','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(127,4,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(128,4,1,'Validate user profile functionality under account management > user profile',NULL,2,NULL,3,1,'',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(129,4,1,'Validate search functionality functionality under content discovery > search',3,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0129',NULL,NULL,NULL,NULL,NULL),(130,6,1,'Validate user profile functionality under account management > user profile',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0130','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(131,11,1,'Validate tag management functionality under content management > tags',NULL,2,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0128','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(132,12,1,'Validate comment system functionality under interaction > comments',5,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0132',NULL,NULL,NULL,NULL,NULL),(133,9,1,'Validate tag management functionality under content management > tags',3,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0134','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(134,12,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,NULL,NULL,NULL,NULL,NULL),(135,9,1,'Validate tag management functionality under content management > tags',2,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0135','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(136,9,1,'Validate tag management functionality under content management > tags',3,4,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0137','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(137,8,1,'Validate question creation functionality under user management > posting > question creation',1,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0136','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(138,4,1,'Validate comment system functionality under interaction > comments',5,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0139',NULL,NULL,NULL,NULL,NULL),(139,4,1,'Validate question creation functionality under user management > posting > question creation',3,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(140,11,1,'Validate question creation functionality under user management > posting > question creation',2,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0138',NULL,NULL,NULL,NULL,NULL),(141,6,1,'Validate tag management functionality under content management > tags',3,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0141','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(142,12,1,'Validate search functionality functionality under content discovery > search',3,4,NULL,2,1,'',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(143,14,1,'Validate voting system functionality under interaction > voting',1,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0143','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(144,9,1,'Validate search functionality functionality under content discovery > search',NULL,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0144',NULL,NULL,NULL,NULL,NULL),(145,14,1,'Validate search functionality functionality under content discovery > search',5,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0145','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(146,12,1,'Validate answer submission functionality under user management > posting > answer submission',5,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0146',NULL,NULL,NULL,NULL,NULL),(147,8,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(148,14,1,'Validate comment system functionality under interaction > comments',3,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(149,14,1,'Validate voting system functionality under interaction > voting',1,3,NULL,2,1,'',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(150,8,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0149','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(151,14,1,'Validate tag management functionality under content management > tags',2,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(152,12,1,'Validate answer submission functionality under user management > posting > answer submission',1,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0152','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(153,4,1,'Validate comment system functionality under interaction > comments',5,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0153',NULL,NULL,NULL,NULL,NULL),(154,12,1,'Validate voting system functionality under interaction > voting',4,3,NULL,3,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0162','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(155,6,1,'Validate tag management functionality under content management > tags',NULL,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0156','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(156,11,1,'Validate question creation functionality under user management > posting > question creation',2,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0157','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(157,11,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,NULL,NULL,NULL,NULL,NULL),(158,12,1,'Validate question creation functionality under user management > posting > question creation',1,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0154','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(159,6,1,'Validate tag management functionality under content management > tags',2,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0158','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(160,4,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0161',NULL,NULL,NULL,NULL,NULL),(161,8,1,'Validate voting system functionality under interaction > voting',3,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0155','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(162,12,1,'Validate tag management functionality under content management > tags',5,2,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(163,11,1,'Validate search functionality functionality under content discovery > search',NULL,4,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,NULL,NULL,NULL,NULL,NULL),(164,6,1,'Validate search functionality functionality under content discovery > search',NULL,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0164','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(165,6,1,'Validate answer submission functionality under user management > posting > answer submission',3,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(166,12,1,'Validate answer submission functionality under user management > posting > answer submission',2,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(167,11,1,'Validate search functionality functionality under content discovery > search',4,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0169',NULL,NULL,NULL,NULL,NULL),(168,9,1,'Validate search functionality functionality under content discovery > search',2,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0166','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(169,8,1,'Validate search functionality functionality under content discovery > search',3,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0163','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(170,11,1,'Validate comment system functionality under interaction > comments',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0171','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(171,6,1,'Validate user profile functionality under account management > user profile',3,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(172,8,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,1,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0170','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(173,9,1,'Validate answer submission functionality under user management > posting > answer submission',5,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(174,4,1,'Validate question creation functionality under user management > posting > question creation',4,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0174','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(175,8,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(176,8,1,'Validate voting system functionality under interaction > voting',NULL,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0177',NULL,NULL,NULL,NULL,NULL),(177,8,1,'Validate search functionality functionality under content discovery > search',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0176','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(178,12,1,'Validate voting system functionality under interaction > voting',4,3,NULL,1,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0178',NULL,NULL,NULL,NULL,NULL),(179,11,1,'Validate search functionality functionality under content discovery > search',2,1,NULL,3,1,'',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0179','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(180,11,1,'Validate question creation functionality under user management > posting > question creation',2,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(181,14,1,'Validate search functionality functionality under content discovery > search',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0181','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(182,11,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,3,1,'',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0180','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(183,4,1,'Validate tag management functionality under content management > tags',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0186',NULL,NULL,NULL,NULL,NULL),(184,9,1,'Validate answer submission functionality under user management > posting > answer submission',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0183','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(185,8,1,'Validate user profile functionality under account management > user profile',5,4,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0190',NULL,NULL,NULL,NULL,NULL),(186,6,1,'Validate voting system functionality under interaction > voting',NULL,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0185',NULL,NULL,NULL,NULL,NULL),(187,14,1,'Validate user profile functionality under account management > user profile',5,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0188',NULL,NULL,NULL,NULL,NULL),(188,11,1,'Validate comment system functionality under interaction > comments',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0184',NULL,NULL,NULL,NULL,NULL),(189,12,1,'Validate voting system functionality under interaction > voting',NULL,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0192','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(190,8,1,'Validate user profile functionality under account management > user profile',1,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0189','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(191,4,1,'Validate comment system functionality under interaction > comments',5,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0187','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(192,12,1,'Validate tag management functionality under content management > tags',3,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0191',NULL,NULL,NULL,NULL,NULL),(193,6,1,'Validate question creation functionality under user management > posting > question creation',4,3,NULL,3,1,'',NULL,'The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0193','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(194,8,1,'Validate answer submission functionality under user management > posting > answer submission',4,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0194','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(195,8,1,'Validate tag management functionality under content management > tags',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0195','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(196,12,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0196','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(197,9,1,'Validate user profile functionality under account management > user profile',2,4,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0197','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(198,6,1,'Validate tag management functionality under content management > tags',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0198','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(199,14,1,'Validate search functionality functionality under content discovery > search',2,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(200,12,1,'Validate comment system functionality under interaction > comments',5,4,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(201,6,1,'Validate user profile functionality under account management > user profile',3,2,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0200','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(202,12,1,'Validate voting system functionality under interaction > voting',3,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0202',NULL,NULL,NULL,NULL,NULL),(203,14,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(204,12,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0204','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(205,4,1,'Validate tag management functionality under content management > tags',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0205','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(206,14,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(207,11,1,'Validate comment system functionality under interaction > comments',3,3,NULL,2,1,'',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0206','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(208,6,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.',NULL,'The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0207','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(209,11,1,'Validate question creation functionality under user management > posting > question creation',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0209','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(210,8,1,'Validate tag management functionality under content management > tags',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0211','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(211,4,1,'Validate tag management functionality under content management > tags',NULL,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0210',NULL,NULL,NULL,NULL,NULL),(212,6,1,'Validate tag management functionality under content management > tags',5,4,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0217','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(213,14,1,'Validate search functionality functionality under content discovery > search',3,3,NULL,3,1,'',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(214,12,1,'Validate question creation functionality under user management > posting > question creation',4,4,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(215,6,1,'Validate search functionality functionality under content discovery > search',1,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0214','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(216,11,1,'Validate user profile functionality under account management > user profile',1,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0215',NULL,NULL,NULL,NULL,NULL),(217,12,1,'Validate search functionality functionality under content discovery > search',5,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0216','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(218,4,1,'Validate answer submission functionality under user management > posting > answer submission',3,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0220',NULL,NULL,NULL,NULL,NULL),(219,11,1,'Validate user profile functionality under account management > user profile',2,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(220,14,1,'Validate voting system functionality under interaction > voting',5,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(221,12,1,'Validate voting system functionality under interaction > voting',1,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(222,4,1,'Validate voting system functionality under interaction > voting',2,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(223,9,1,'Validate question creation functionality under user management > posting > question creation',1,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0221','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(224,14,1,'Validate answer submission functionality under user management > posting > answer submission',5,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0225','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(225,6,1,'Validate search functionality functionality under content discovery > search',3,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0223','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(226,12,1,'Validate search functionality functionality under content discovery > search',NULL,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(227,4,1,'Validate comment system functionality under interaction > comments',5,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(228,9,1,'Validate user profile functionality under account management > user profile',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0227','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(229,8,1,'Validate question creation functionality under user management > posting > question creation',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0224','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(230,4,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,1,1,'',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0230','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(231,14,1,'Validate tag management functionality under content management > tags',1,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(232,12,1,'Validate voting system functionality under interaction > voting',NULL,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0239','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(233,12,1,'Validate answer submission functionality under user management > posting > answer submission',3,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0235',NULL,NULL,NULL,NULL,NULL),(234,9,1,'Validate voting system functionality under interaction > voting',1,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(235,4,1,'Validate tag management functionality under content management > tags',4,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0231','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(236,6,1,'Validate voting system functionality under interaction > voting',5,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.',NULL,'The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0233',NULL,NULL,NULL,NULL,NULL),(237,4,1,'Validate question creation functionality under user management > posting > question creation',NULL,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0237','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(238,9,1,'Validate comment system functionality under interaction > comments',1,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(239,4,1,'Validate question creation functionality under user management > posting > question creation',NULL,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0234','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(240,4,1,'Validate answer submission functionality under user management > posting > answer submission',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0241','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(241,14,1,'Validate search functionality functionality under content discovery > search',5,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0240','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(242,14,1,'Validate question creation functionality under user management > posting > question creation',5,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(243,14,1,'Validate user profile functionality under account management > user profile',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0243','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(244,6,1,'Validate question creation functionality under user management > posting > question creation',NULL,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0245','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(245,8,1,'Validate search functionality functionality under content discovery > search',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0244',NULL,NULL,NULL,NULL,NULL),(246,14,1,'Validate question creation functionality under user management > posting > question creation',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0246','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(247,6,1,'Validate comment system functionality under interaction > comments',NULL,4,NULL,2,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(248,8,1,'Validate answer submission functionality under user management > posting > answer submission',1,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0249',NULL,NULL,NULL,NULL,NULL),(249,9,1,'Validate question creation functionality under user management > posting > question creation',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(250,12,1,'Validate user profile functionality under account management > user profile',3,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(251,6,1,'Validate comment system functionality under interaction > comments',2,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0251',NULL,NULL,NULL,NULL,NULL),(252,9,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(253,4,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0253','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(254,14,1,'Validate answer submission functionality under user management > posting > answer submission',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0255','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(255,4,1,'Validate user profile functionality under account management > user profile',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0257','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(256,8,1,'Validate answer submission functionality under user management > posting > answer submission',1,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0254',NULL,NULL,NULL,NULL,NULL),(257,8,1,'Validate answer submission functionality under user management > posting > answer submission',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,NULL,NULL,NULL,NULL,NULL),(258,8,1,'Validate tag management functionality under content management > tags',NULL,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0259',NULL,NULL,NULL,NULL,NULL),(259,9,1,'Validate question creation functionality under user management > posting > question creation',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0258',NULL,NULL,NULL,NULL,NULL),(260,6,1,'Validate user profile functionality under account management > user profile',5,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,NULL,NULL,NULL,NULL,NULL),(261,9,1,'Validate answer submission functionality under user management > posting > answer submission',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0262','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(262,6,1,'Validate user profile functionality under account management > user profile',2,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0261','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(263,12,1,'Validate question creation functionality under user management > posting > question creation',2,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(264,4,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(265,4,1,'Validate question creation functionality under user management > posting > question creation',2,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(266,8,1,'Validate question creation functionality under user management > posting > question creation',5,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0265','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(267,8,1,'Validate question creation functionality under user management > posting > question creation',3,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(268,12,1,'Validate tag management functionality under content management > tags',5,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0268','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(269,8,1,'Validate tag management functionality under content management > tags',2,3,NULL,2,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0270','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(270,4,1,'Validate tag management functionality under content management > tags',5,3,NULL,3,1,'',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0269','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(271,9,1,'Validate search functionality functionality under content discovery > search',1,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(272,6,1,'Validate question creation functionality under user management > posting > question creation',3,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0277','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(273,9,1,'Validate answer submission functionality under user management > posting > answer submission',2,1,NULL,3,1,'',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(274,14,1,'Validate voting system functionality under interaction > voting',3,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0274','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(275,4,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0275',NULL,NULL,NULL,NULL,NULL),(276,14,1,'Validate search functionality functionality under content discovery > search',5,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0276','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(277,12,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0272','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(278,4,1,'Validate question creation functionality under user management > posting > question creation',4,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0279','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(279,8,1,'Validate tag management functionality under content management > tags',4,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0278',NULL,NULL,NULL,NULL,NULL),(280,4,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0280','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(281,9,1,'Validate question creation functionality under user management > posting > question creation',1,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0281','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(282,11,1,'Validate search functionality functionality under content discovery > search',NULL,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0283',NULL,NULL,NULL,NULL,NULL),(283,14,1,'Validate tag management functionality under content management > tags',5,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0282',NULL,NULL,NULL,NULL,NULL),(284,14,1,'Validate question creation functionality under user management > posting > question creation',NULL,2,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0287','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(285,9,1,'Validate voting system functionality under interaction > voting',1,4,NULL,1,1,'',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(286,14,1,'Validate voting system functionality under interaction > voting',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0286','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(287,12,1,'Validate comment system functionality under interaction > comments',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(288,4,1,'Validate voting system functionality under interaction > voting',3,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0288','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(289,14,1,'Validate voting system functionality under interaction > voting',2,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0289',NULL,NULL,NULL,NULL,NULL),(290,12,1,'Validate tag management functionality under content management > tags',1,2,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0290',NULL,NULL,NULL,NULL,NULL),(291,4,1,'Validate question creation functionality under user management > posting > question creation',4,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0291',NULL,NULL,NULL,NULL,NULL),(292,6,1,'Validate search functionality functionality under content discovery > search',3,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0292',NULL,NULL,NULL,NULL,NULL),(293,8,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0293','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(294,4,1,'Validate user profile functionality under account management > user profile',4,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0294','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(295,8,1,'Validate comment system functionality under interaction > comments',5,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(296,8,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,2,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(297,11,1,'Validate answer submission functionality under user management > posting > answer submission',4,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0298','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(298,9,1,'Validate voting system functionality under interaction > voting',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0297','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(299,8,1,'Validate question creation functionality under user management > posting > question creation',5,4,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(300,14,1,'Validate tag management functionality under content management > tags',2,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0301','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(301,14,1,'Validate question creation functionality under user management > posting > question creation',2,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0300',NULL,NULL,NULL,NULL,NULL),(302,6,1,'Validate voting system functionality under interaction > voting',NULL,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.',NULL,'The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0311','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(303,11,1,'Validate voting system functionality under interaction > voting',5,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0302','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(304,14,1,'Validate search functionality functionality under content discovery > search',NULL,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(305,12,1,'Validate answer submission functionality under user management > posting > answer submission',1,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0308','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(306,9,1,'Validate search functionality functionality under content discovery > search',NULL,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(307,9,1,'Validate user profile functionality under account management > user profile',5,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0307','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(308,14,1,'Validate user profile functionality under account management > user profile',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0309','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(309,6,1,'Validate voting system functionality under interaction > voting',5,1,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(310,8,1,'Validate question creation functionality under user management > posting > question creation',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0310','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(311,6,1,'Validate answer submission functionality under user management > posting > answer submission',4,1,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0304','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(312,11,1,'Validate answer submission functionality under user management > posting > answer submission',2,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(313,11,1,'Validate user profile functionality under account management > user profile',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(314,11,1,'Validate voting system functionality under interaction > voting',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0313','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(315,14,1,'Validate user profile functionality under account management > user profile',3,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(316,12,1,'Validate comment system functionality under interaction > comments',NULL,1,NULL,3,1,'',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0315','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(317,11,1,'Validate voting system functionality under interaction > voting',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0317','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(318,12,1,'Validate user profile functionality under account management > user profile',2,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0318','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(319,11,1,'Validate user profile functionality under account management > user profile',2,4,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0319',NULL,NULL,NULL,NULL,NULL),(320,8,1,'Validate question creation functionality under user management > posting > question creation',5,1,NULL,3,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0320','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(321,8,1,'Validate user profile functionality under account management > user profile',1,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(322,9,1,'Validate voting system functionality under interaction > voting',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0322','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(323,11,1,'Validate search functionality functionality under content discovery > search',NULL,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0323',NULL,NULL,NULL,NULL,NULL),(324,8,1,'Validate voting system functionality under interaction > voting',4,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0324',NULL,NULL,NULL,NULL,NULL),(325,9,1,'Validate search functionality functionality under content discovery > search',4,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0330',NULL,NULL,NULL,NULL,NULL),(326,14,1,'Validate question creation functionality under user management > posting > question creation',1,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0328',NULL,NULL,NULL,NULL,NULL),(327,9,1,'Validate search functionality functionality under content discovery > search',5,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(328,6,1,'Validate comment system functionality under interaction > comments',2,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(329,11,1,'Validate answer submission functionality under user management > posting > answer submission',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(330,8,1,'Validate comment system functionality under interaction > comments',2,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(331,14,1,'Validate comment system functionality under interaction > comments',2,3,NULL,3,1,'',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0326',NULL,NULL,NULL,NULL,NULL),(332,11,1,'Validate voting system functionality under interaction > voting',3,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0332','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(333,11,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0333',NULL,NULL,NULL,NULL,NULL),(334,11,1,'Validate tag management functionality under content management > tags',3,3,NULL,3,1,'',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0335','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(335,12,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0336',NULL,NULL,NULL,NULL,NULL),(336,8,1,'Validate comment system functionality under interaction > comments',4,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(337,14,1,'Validate comment system functionality under interaction > comments',3,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0334','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(338,12,1,'Validate tag management functionality under content management > tags',1,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0340','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(339,14,1,'Validate user profile functionality under account management > user profile',5,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0337','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(340,4,1,'Validate tag management functionality under content management > tags',NULL,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(341,12,1,'Validate search functionality functionality under content discovery > search',1,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0338',NULL,NULL,NULL,NULL,NULL),(342,4,1,'Validate answer submission functionality under user management > posting > answer submission',3,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0339','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(343,9,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0343','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(344,9,1,'Validate answer submission functionality under user management > posting > answer submission',4,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0344','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(345,6,1,'Validate question creation functionality under user management > posting > question creation',4,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(346,6,1,'Validate search functionality functionality under content discovery > search',NULL,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(347,11,1,'Validate search functionality functionality under content discovery > search',3,2,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0345',NULL,NULL,NULL,NULL,NULL),(348,4,1,'Validate answer submission functionality under user management > posting > answer submission',2,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0347','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(349,14,1,'Validate user profile functionality under account management > user profile',5,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0349',NULL,NULL,NULL,NULL,NULL),(350,9,1,'Validate user profile functionality under account management > user profile',4,1,NULL,1,1,'',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,NULL,NULL,NULL,NULL,NULL),(351,6,1,'Validate answer submission functionality under user management > posting > answer submission',4,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0351',NULL,NULL,NULL,NULL,NULL),(352,4,1,'Validate search functionality functionality under content discovery > search',5,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0352','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(353,11,1,'Validate user profile functionality under account management > user profile',1,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(354,11,1,'Validate voting system functionality under interaction > voting',1,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0354','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(355,8,1,'Validate user profile functionality under account management > user profile',1,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(356,4,1,'Validate comment system functionality under interaction > comments',5,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0356','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(357,8,1,'Validate search functionality functionality under content discovery > search',2,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0357','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(358,14,1,'Validate tag management functionality under content management > tags',NULL,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(359,9,1,'Validate question creation functionality under user management > posting > question creation',5,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0358','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(360,12,1,'Validate voting system functionality under interaction > voting',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0359','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(361,11,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,1,1,'',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(362,9,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,NULL,NULL,NULL,NULL,NULL),(363,9,1,'Validate user profile functionality under account management > user profile',1,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(364,6,1,'Validate comment system functionality under interaction > comments',4,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0361','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(365,8,1,'Validate user profile functionality under account management > user profile',5,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0367','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(366,14,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0369',NULL,NULL,NULL,NULL,NULL),(367,8,1,'Validate comment system functionality under interaction > comments',1,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0368','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(368,8,1,'Validate user profile functionality under account management > user profile',NULL,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(369,11,1,'Validate answer submission functionality under user management > posting > answer submission',3,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0365','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(370,4,1,'Validate user profile functionality under account management > user profile',NULL,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(371,6,1,'Validate question creation functionality under user management > posting > question creation',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0370','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(372,12,1,'Validate search functionality functionality under content discovery > search',5,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0371','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(373,8,1,'Validate tag management functionality under content management > tags',1,4,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(374,12,1,'Validate user profile functionality under account management > user profile',5,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0374','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(375,4,1,'Validate tag management functionality under content management > tags',2,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0376','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(376,8,1,'Validate voting system functionality under interaction > voting',4,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0375',NULL,NULL,NULL,NULL,NULL),(377,12,1,'Validate comment system functionality under interaction > comments',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0377','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(378,9,1,'Validate voting system functionality under interaction > voting',2,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0378',NULL,NULL,NULL,NULL,NULL),(379,6,1,'Validate question creation functionality under user management > posting > question creation',4,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0380','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(380,6,1,'Validate search functionality functionality under content discovery > search',3,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.',NULL,'The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0379',NULL,NULL,NULL,NULL,NULL),(381,12,1,'Validate answer submission functionality under user management > posting > answer submission',4,4,NULL,3,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0381','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(382,9,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(383,8,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(384,9,1,'Validate comment system functionality under interaction > comments',5,4,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0384','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(385,12,1,'Validate user profile functionality under account management > user profile',NULL,1,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0386','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(386,9,1,'Validate voting system functionality under interaction > voting',4,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(387,8,1,'Validate question creation functionality under user management > posting > question creation',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0387','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(388,9,1,'Validate tag management functionality under content management > tags',2,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(389,6,1,'Validate user profile functionality under account management > user profile',NULL,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(390,8,1,'Validate user profile functionality under account management > user profile',3,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(391,12,1,'Validate voting system functionality under interaction > voting',4,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0393','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(392,6,1,'Validate search functionality functionality under content discovery > search',2,4,NULL,3,1,'',NULL,'The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0392','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(393,11,1,'Validate tag management functionality under content management > tags',5,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(394,9,1,'Validate voting system functionality under interaction > voting',NULL,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0391',NULL,NULL,NULL,NULL,NULL),(395,14,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,4,NULL,1,1,'',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(396,6,1,'Validate user profile functionality under account management > user profile',4,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0399',NULL,NULL,NULL,NULL,NULL),(397,11,1,'Validate question creation functionality under user management > posting > question creation',5,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0398',NULL,NULL,NULL,NULL,NULL),(398,11,1,'Validate search functionality functionality under content discovery > search',3,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0396','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(399,8,1,'Validate user profile functionality under account management > user profile',NULL,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(400,12,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(401,11,1,'Validate answer submission functionality under user management > posting > answer submission',4,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0400','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(402,8,1,'Validate user profile functionality under account management > user profile',1,1,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0402','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(403,4,1,'Validate answer submission functionality under user management > posting > answer submission',4,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0403',NULL,NULL,NULL,NULL,NULL),(404,6,1,'Validate voting system functionality under interaction > voting',NULL,2,NULL,2,1,'',NULL,'The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0404','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(405,8,1,'Validate user profile functionality under account management > user profile',1,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(406,11,1,'Validate search functionality functionality under content discovery > search',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0410',NULL,NULL,NULL,NULL,NULL),(407,9,1,'Validate question creation functionality under user management > posting > question creation',2,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0406','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(408,12,1,'Validate user profile functionality under account management > user profile',1,3,NULL,3,1,'',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(409,9,1,'Validate tag management functionality under content management > tags',3,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0408','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(410,9,1,'Validate voting system functionality under interaction > voting',3,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(411,6,1,'Validate question creation functionality under user management > posting > question creation',4,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.',NULL,'The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0411',NULL,NULL,NULL,NULL,NULL),(412,8,1,'Validate answer submission functionality under user management > posting > answer submission',1,2,NULL,3,1,'',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(413,4,1,'Validate user profile functionality under account management > user profile',3,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0413','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(414,8,1,'Validate user profile functionality under account management > user profile',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0415',NULL,NULL,NULL,NULL,NULL),(415,4,1,'Validate voting system functionality under interaction > voting',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0414','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(416,9,1,'Validate question creation functionality under user management > posting > question creation',NULL,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(417,8,1,'Validate question creation functionality under user management > posting > question creation',3,4,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(418,14,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(419,12,1,'Validate answer submission functionality under user management > posting > answer submission',1,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0419','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(420,4,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0418',NULL,NULL,NULL,NULL,NULL),(421,12,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(422,4,1,'Validate question creation functionality under user management > posting > question creation',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0421','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(423,12,1,'Validate voting system functionality under interaction > voting',2,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,NULL,NULL,NULL,NULL,NULL),(424,9,1,'Validate user profile functionality under account management > user profile',4,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0425','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(425,12,1,'Validate search functionality functionality under content discovery > search',5,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0423',NULL,NULL,NULL,NULL,NULL),(426,6,1,'Validate question creation functionality under user management > posting > question creation',3,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0427',NULL,NULL,NULL,NULL,NULL),(427,14,1,'Validate answer submission functionality under user management > posting > answer submission',3,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0426',NULL,NULL,NULL,NULL,NULL),(428,6,1,'Validate tag management functionality under content management > tags',2,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.',NULL,'The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0428','This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(429,4,1,'Validate answer submission functionality under user management > posting > answer submission',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(430,9,1,'Validate answer submission functionality under user management > posting > answer submission',1,2,NULL,3,1,'',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(431,4,1,'Validate search functionality functionality under content discovery > search',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(432,8,1,'Validate answer submission functionality under user management > posting > answer submission',4,2,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0431','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(433,11,1,'Validate comment system functionality under interaction > comments',3,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0433','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(434,8,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0434',NULL,NULL,NULL,NULL,NULL),(435,9,1,'Validate tag management functionality under content management > tags',NULL,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0436','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(436,12,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0437','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(437,14,1,'Validate tag management functionality under content management > tags',3,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0435',NULL,NULL,NULL,NULL,NULL),(438,14,1,'Validate tag management functionality under content management > tags',NULL,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(439,6,1,'Validate user profile functionality under account management > user profile',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(440,9,1,'Validate answer submission functionality under user management > posting > answer submission',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0440','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(441,14,1,'Validate answer submission functionality under user management > posting > answer submission',5,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0445','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(442,14,1,'Validate answer submission functionality under user management > posting > answer submission',3,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(443,8,1,'Validate user profile functionality under account management > user profile',1,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0441','This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(444,14,1,'Validate search functionality functionality under content discovery > search',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.',NULL,'',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0444',NULL,NULL,NULL,NULL,NULL),(445,14,1,'Validate voting system functionality under interaction > voting',4,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.',NULL,'The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(446,12,1,'Validate answer submission functionality under user management > posting > answer submission',2,2,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0447','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(447,11,1,'Validate voting system functionality under interaction > voting',1,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0446','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(448,12,1,'Validate user profile functionality under account management > user profile',3,4,NULL,3,1,'',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0448',NULL,NULL,NULL,NULL,NULL),(449,12,1,'Validate voting system functionality under interaction > voting',1,3,NULL,1,1,'',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0450','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(450,11,1,'Validate user profile functionality under account management > user profile',3,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(451,12,1,'Validate question creation functionality under user management > posting > question creation',3,1,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0451','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(452,11,1,'Validate user profile functionality under account management > user profile',NULL,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0460','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(453,9,1,'Validate user profile functionality under account management > user profile',3,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0452','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(454,4,1,'Validate tag management functionality under content management > tags',1,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0454',NULL,NULL,NULL,NULL,NULL),(455,9,1,'Validate user profile functionality under account management > user profile',1,3,NULL,3,1,'',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0456',NULL,NULL,NULL,NULL,NULL),(456,9,1,'Validate search functionality functionality under content discovery > search',4,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(457,9,1,'Validate question creation functionality under user management > posting > question creation',3,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(458,4,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,NULL,NULL,NULL,NULL,NULL),(459,14,1,'Validate question creation functionality under user management > posting > question creation',1,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(460,12,1,'Validate answer submission functionality under user management > posting > answer submission',3,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0455','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(461,14,1,'Validate tag management functionality under content management > tags',5,3,NULL,2,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0461',NULL,NULL,NULL,NULL,NULL),(462,12,1,'Validate search functionality functionality under content discovery > search',1,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(463,14,1,'Validate voting system functionality under interaction > voting',3,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0463',NULL,NULL,NULL,NULL,NULL),(464,12,1,'Validate answer submission functionality under user management > posting > answer submission',4,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0466','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(465,14,1,'Validate user profile functionality under account management > user profile',2,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(466,9,1,'Validate search functionality functionality under content discovery > search',2,1,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(467,4,1,'Validate search functionality functionality under content discovery > search',5,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(468,14,1,'Validate comment system functionality under interaction > comments',3,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that search functionality module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0468','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(469,4,1,'Validate answer submission functionality under user management > posting > answer submission',5,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(470,12,1,'Validate tag management functionality under content management > tags',2,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0470','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(471,6,1,'Validate comment system functionality under interaction > comments',2,4,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(472,9,1,'Validate question creation functionality under user management > posting > question creation',2,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(473,11,1,'Validate voting system functionality under interaction > voting',NULL,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,'This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(474,8,1,'Validate tag management functionality under content management > tags',3,3,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0474',NULL,NULL,NULL,NULL,NULL),(475,11,1,'Validate search functionality functionality under content discovery > search',5,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0475',NULL,NULL,NULL,NULL,NULL),(476,11,1,'Validate answer submission functionality under user management > posting > answer submission',3,3,NULL,3,1,'',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0476','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(477,11,1,'Validate answer submission functionality under user management > posting > answer submission',2,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0477','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(478,4,1,'Validate voting system functionality under interaction > voting',4,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0479',NULL,NULL,NULL,NULL,NULL),(479,12,1,'Validate comment system functionality under interaction > comments',NULL,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that tag management module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the tag management section.\nStep 3: Perform the required operations.','The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0478',NULL,NULL,NULL,NULL,NULL),(480,9,1,'Validate question creation functionality under user management > posting > question creation',1,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that question creation module is enabled.',NULL,'The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(481,9,1,'Validate question creation functionality under user management > posting > question creation',2,1,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0480','This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(482,4,1,'Validate answer submission functionality under user management > posting > answer submission',3,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B',NULL,NULL,NULL,NULL,NULL,NULL),(483,11,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,4,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0482',NULL,NULL,NULL,NULL,NULL),(484,4,1,'Validate user profile functionality under account management > user profile',1,1,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0483','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(485,14,1,'Validate comment system functionality under interaction > comments',1,2,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the search functionality section.\nStep 3: Perform the required operations.','The search functionality functionality works as expected without any errors. Refer to https://example.com/docs/search-functionality-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0484','This test validates the search functionality feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(486,8,1,'Validate search functionality functionality under content discovery > search',NULL,4,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that user profile module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the user profile feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(487,4,1,'Validate comment system functionality under interaction > comments',3,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0487','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(488,9,1,'Validate question creation functionality under user management > posting > question creation',2,3,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the question creation section.\nStep 3: Perform the required operations.','The question creation functionality works as expected without any errors. Refer to https://example.com/docs/question-creation-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',5,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,'This test validates the question creation feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(489,8,1,'Validate search functionality functionality under content discovery > search',2,1,NULL,3,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-C','TC-0489',NULL,NULL,NULL,NULL,NULL),(490,6,1,'Validate comment system functionality under interaction > comments',NULL,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.',NULL,'The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(491,4,1,'Validate voting system functionality under interaction > voting',1,4,NULL,2,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the answer submission section.\nStep 3: Perform the required operations.','The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',2,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0492','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(492,8,1,'Validate user profile functionality under account management > user profile',1,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the user profile section.\nStep 3: Perform the required operations.','The user profile functionality works as expected without any errors. Refer to https://example.com/docs/user-profile-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A','TC-0490',NULL,NULL,NULL,NULL,NULL),(493,12,1,'Validate voting system functionality under interaction > voting',NULL,3,NULL,3,1,'',NULL,'The tag management functionality works as expected without any errors. Refer to https://example.com/docs/tag-management-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0493','This test validates the tag management feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(494,4,1,'Validate answer submission functionality under user management > posting > answer submission',5,4,NULL,3,1,'',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0494','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(495,6,1,'Validate answer submission functionality under user management > posting > answer submission',1,3,NULL,1,1,'','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D',NULL,NULL,NULL,NULL,NULL,NULL),(496,11,1,'Validate tag management functionality under content management > tags',5,2,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the comment system section.\nStep 3: Perform the required operations.','The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',6,NULL,NULL,NULL,NULL,'Active',NULL,'Group-B','TC-0495','This test validates the comment system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(497,4,1,'Validate answer submission functionality under user management > posting > answer submission',NULL,3,NULL,1,1,'',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,NULL,'TC-0498','This test validates the answer submission feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL),(498,11,1,'Validate comment system functionality under interaction > comments',2,3,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that comment system module is enabled.',NULL,'The comment system functionality works as expected without any errors. Refer to https://example.com/docs/comment-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',3,NULL,NULL,NULL,NULL,'Active',NULL,'Group-D','TC-0500',NULL,NULL,NULL,NULL,NULL),(499,4,1,'Validate user profile functionality under account management > user profile',4,3,NULL,1,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that answer submission module is enabled.',NULL,'The answer submission functionality works as expected without any errors. Refer to https://example.com/docs/answer-submission-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',1,NULL,NULL,NULL,NULL,'Active',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(500,6,1,'Validate user profile functionality under account management > user profile',1,2,NULL,3,1,'Ensure the user is logged in. Visit https://example.com/login if required.\nCheck that voting system module is enabled.','Step 1: Log in to the application.\nStep 2: Navigate to the voting system section.\nStep 3: Perform the required operations.','The voting system functionality works as expected without any errors. Refer to https://example.com/docs/voting-system-module for detailed specifications.',NULL,1,NULL,'2025-03-27 09:13:23',NULL,'2025-03-27 09:13:23','[]',4,NULL,NULL,NULL,NULL,'Active',NULL,'Group-A',NULL,'This test validates the voting system feature and ensures it meets all functional requirements.',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `tests` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `type`
--
DROP TABLE IF EXISTS `type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `type` (
`typeId` int NOT NULL AUTO_INCREMENT,
`typeName` varchar(30) NOT NULL,
`createdBy` int DEFAULT NULL,
`createdOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`orgId` int NOT NULL,
`projectId` int DEFAULT NULL,
PRIMARY KEY (`typeId`),
KEY `type_createdBy_users_userId_fk` (`createdBy`),
KEY `type_orgId_organisations_orgId_fk` (`orgId`),
KEY `typeNameIndex` (`typeName`),
KEY `type_projectId_projects_projectId_fk` (`projectId`),
CONSTRAINT `type_createdBy_users_userId_fk` FOREIGN KEY (`createdBy`) REFERENCES `users` (`userId`) ON DELETE SET NULL,
CONSTRAINT `type_orgId_organisations_orgId_fk` FOREIGN KEY (`orgId`) REFERENCES `organisations` (`orgId`) ON DELETE CASCADE,
CONSTRAINT `type_projectId_projects_projectId_fk` FOREIGN KEY (`projectId`) REFERENCES `projects` (`projectId`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `type`
--
LOCK TABLES `type` WRITE;
/*!40000 ALTER TABLE `type` DISABLE KEYS */;
INSERT INTO `type` VALUES (1,'Functional',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',1,1),(2,'P1 Test Case',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',1,1),(3,'P0 Test Case',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',1,1),(4,'MobileApp',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',1,1),(5,'Automated',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',1,1),(6,'Intelligent Client',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',1,1),(7,'P2 Test Cases',1,'2025-03-27 09:13:17','2025-03-27 09:13:17',1,1);
/*!40000 ALTER TABLE `type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`userId` int NOT NULL AUTO_INCREMENT,
`userName` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
`ssoId` varchar(200) DEFAULT NULL,
`profileUrl` text,
`role` enum('admin','user','reader') NOT NULL DEFAULT 'user',
`token` varchar(500) DEFAULT NULL,
`updatedBy` int DEFAULT NULL,
`status` enum('active','archive','delete') DEFAULT 'active',
PRIMARY KEY (`userId`),
UNIQUE KEY `users_email_unique` (`email`),
UNIQUE KEY `users_ssoId_unique` (`ssoId`),
UNIQUE KEY `users_token_unique` (`token`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'Seed Admin','admin@example.com',NULL,NULL,'admin','dummy1',NULL,'active'),(2,'Seed User','user@example.com',NULL,NULL,'user','dummy2',NULL,'active'),(3,'Seed Reader','reader@example.com',NULL,NULL,'reader','dummy3',NULL,'active');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2025-03-27 15:39:57