Skip to content

Commit aaac524

Browse files
authored
Update README.md
1 parent 6acde4e commit aaac524

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,20 @@ src/
2323
│ │ └── example/
2424
│ │ ├── Category.java
2525
│ │ ├── HttpMethod.java
26-
│ │ ├── constant/ # Application-wide constants
26+
│ │ ├── constant/ # Project related constants including Application and Reporter contants
2727
│ │ │ ├── ApplicationConstant.java
2828
│ │ │ ├── AuthenticationConstant.java
2929
│ │ │ ├── CommonConstant.java
3030
│ │ │ └── ReporterConstant.java
31+
│ │ ├── model/ # Model classes which represent the request JSON payload
32+
│ │ │ ├── AuthenticationRequest.java
33+
│ │ │ ├── BookingDates.java
34+
│ │ │ ├── BookingRequest.java
3135
│ │ ├── service/
3236
│ │ │ ├── ExtentReportService.java # Extent report setup services
3337
│ │ │ └── app/ # Application service classes
3438
│ │ │ ├── AuthenticationService.java
35-
│ │ │ └── UserService.java
39+
│ │ │ └── BookingService.java
3640
│ │ └── util/ # Utility methods
3741
│ │ ├── AnnotationReader.java
3842
│ │ └── FileReader.java
@@ -49,9 +53,7 @@ src/
4953
│ │ └── restassured/
5054
│ │ └── example/
5155
│ │ └── test/
52-
│ │ ├── constant/ # Test constants (e.g., status, categories)
53-
│ │ │ ├── Gender.java
54-
│ │ │ ├── Status.java
56+
│ │ ├── constant/ # Test constants
5557
│ │ │ └── TestCategory.java
5658
│ │ ├── AuthTest.java # Authentication tests
5759
│ │ ├── BaseTest.java # Base test class setup

0 commit comments

Comments
 (0)