@[email protected] to [email protected]English • edit-21 year agoFive Tools to Improve Your Java Code (2019)developer.okta.comexternal-linkmessage-square5fedilinkarrow-up112arrow-down11file-text
arrow-up111arrow-down1external-linkFive Tools to Improve Your Java Code (2019)developer.okta.com@[email protected] to [email protected]English • edit-21 year agomessage-square5fedilinkfile-text
Saved you a click: JaCoCo for test coverage, PMD for static code analysis SpotBugs (successor of FindBugs) for linting and enforce coding style/best practices, japicmp to check semantic versioning codecov and checkstyle.
minus-square@thisisawayoflifelink3•edit-21 year agoTo build on this: Micrometer to measure performance of potentially complex code BeanRunner to test POJOs without writing much code.
To build on this: