File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 23
23
│ │ └── example/
24
24
│ │ ├── Category.java
25
25
│ │ ├── HttpMethod.java
26
- │ │ ├── constant/ # Application-wide constants
26
+ │ │ ├── constant/ # Project related constants including Application and Reporter contants
27
27
│ │ │ ├── ApplicationConstant.java
28
28
│ │ │ ├── AuthenticationConstant.java
29
29
│ │ │ ├── CommonConstant.java
30
30
│ │ │ └── ReporterConstant.java
31
+ │ │ ├── model/ # Model classes which represent the request JSON payload
32
+ │ │ │ ├── AuthenticationRequest.java
33
+ │ │ │ ├── BookingDates.java
34
+ │ │ │ ├── BookingRequest.java
31
35
│ │ ├── service/
32
36
│ │ │ ├── ExtentReportService.java # Extent report setup services
33
37
│ │ │ └── app/ # Application service classes
34
38
│ │ │ ├── AuthenticationService.java
35
- │ │ │ └── UserService .java
39
+ │ │ │ └── BookingService .java
36
40
│ │ └── util/ # Utility methods
37
41
│ │ ├── AnnotationReader.java
38
42
│ │ └── FileReader.java
49
53
│ │ └── restassured/
50
54
│ │ └── example/
51
55
│ │ └── test/
52
- │ │ ├── constant/ # Test constants (e.g., status, categories)
53
- │ │ │ ├── Gender.java
54
- │ │ │ ├── Status.java
56
+ │ │ ├── constant/ # Test constants
55
57
│ │ │ └── TestCategory.java
56
58
│ │ ├── AuthTest.java # Authentication tests
57
59
│ │ ├── BaseTest.java # Base test class setup
You can’t perform that action at this time.
0 commit comments