-
-
Notifications
You must be signed in to change notification settings - Fork 26.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolved issue #1323 Two-Step View pattern #3106
base: master
Are you sure you want to change the base?
Conversation
Quality Gate passedIssues Measures |
@iluwatar may you review this PR ? |
Dear @iluwatar may you check my PR? |
This is a gentle follow up. |
Thank you for your review. I am in the midst of final exams right now. May I work on it next week? |
Sure, no problem. Good luck with the exams 😄 |
PR SummaryThis PR implements the Two-Step View pattern, separating data preparation from presentation. It includes a new module ( Changes
autogenerated by presubmit.ai |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ LGTM!
Review Summary
Commits Considered (3)
- a3fe274: Resolved Reviews
- 53afd1f: Fixed tet coverage and fixed some edge cases
- f833ad3: Resolved issue Two Step View pattern #1323 Two-Step View pattern
Files Processed (12)
- microservices-idempotent-consumer/src/test/java/com/iluwatar/idempotentconsumer/AppTest.java (1 hunk)
- microservices-idempotent-consumer/src/test/java/com/iluwatar/idempotentconsumer/RequestStateMachineTests.java (1 hunk)
- pom.xml (1 hunk)
- two-step-view/README.md (1 hunk)
- two-step-view/pom.xml (1 hunk)
- two-step-view/src/main/java/com/iluwatar/App.java (1 hunk)
- two-step-view/src/main/java/com/iluwatar/Book.java (1 hunk)
- two-step-view/src/main/java/com/iluwatar/BookStore.java (1 hunk)
- two-step-view/src/main/java/com/iluwatar/DataPreparation.java (1 hunk)
- two-step-view/src/main/java/com/iluwatar/Presentation.java (1 hunk)
- two-step-view/src/test/java/com/iluwatar/BookStoreTest.java (1 hunk)
- update-header.sh (1 hunk)
Actionable Comments (0)
Skipped Comments (8)
-
microservices-idempotent-consumer/src/test/java/com/iluwatar/idempotentconsumer/AppTest.java [1-24]
best practice: "License header too verbose."
-
microservices-idempotent-consumer/src/test/java/com/iluwatar/idempotentconsumer/RequestStateMachineTests.java [1-24]
best practice: "License header too verbose."
-
two-step-view/src/main/java/com/iluwatar/App.java [1-27]
best practice: "License header too verbose."
-
two-step-view/src/main/java/com/iluwatar/Book.java [1-24]
best practice: "License header too verbose."
-
two-step-view/src/main/java/com/iluwatar/BookStore.java [1-24]
best practice: "License header too verbose."
-
two-step-view/src/main/java/com/iluwatar/DataPreparation.java [1-24]
best practice: "License header too verbose."
-
two-step-view/src/main/java/com/iluwatar/Presentation.java [1-24]
best practice: "License header too verbose."
-
two-step-view/src/test/java/com/iluwatar/BookStoreTest.java [1-24]
best practice: "License header too verbose."
Quality Gate failedFailed conditions See analysis details on SonarQube Cloud Catch issues before they fail your Quality Gate with our IDE extension SonarQube for IDE |
created a two-step view design pattern for more details check the read-me file
close issue #1323