feat: implement Employee and EmployeeDAO classes with CRUD operations#116
feat: implement Employee and EmployeeDAO classes with CRUD operations#116Aditya90456 wants to merge 1 commit intokeploy:mainfrom
Conversation
|
Hi @Aditya90456 |
|
|
Hi @kapishupadhyay22, thanks for the review 🙂 Why these changes are required: Observations while recording and replaying with Keploy: During recording, Keploy successfully captured the HTTP requests/responses along with the corresponding database interactions for all CRUD endpoints. On replay, the test cases were executed deterministically, and the responses matched the recorded behavior without requiring any code changes. This helped validate that the DAO-based design works well with Keploy’s record/replay flow and makes the sample easier to extend and reason about. Please let me know if you’d like me to simplify the example further or add more documentation around the Keploy flow. @kapishupadhyay22 |
Introduced Employee model and DAO layer with create, read, update, and delete operations.