Add unit tests and JaCoCo coverage reporting for >80% coverage #81
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds comprehensive unit tests and JaCoCo coverage reporting to achieve >80% code coverage for the Spring Boot Banking Application. The changes include:
pom.xmlfor coverage reportingJenkinsfilebetween code checkout and SonarQube analysisAccountTest,TransactionTest- testing getters/setters/constructorsAccountServiceTest- testing business logic with mocked repositoriesBankControllerTest- testing endpoints with@WebMvcTestAccountRepositoryTest,TransactionRepositoryTest- testing with@DataJpaTestSecurityConfigTest- testing authentication/authorization rulesReview & Testing Checklist for Human
mvn testlocally and checktarget/site/jacoco/index.htmlto verify critical business logic paths (especiallytransferAmount,withdrawwith insufficient funds) are properly covered.Recommended test plan:
mvn testlocally to verify all 66 tests passNotes
-DskipTests=true) as tests now run earlier in the CI pipelineLink to Devin run: https://app.devin.ai/sessions/e8995f5da4014a22923e20fe02fe9174
Requested by: Cindy Huang (@cindyyhuang)