Closed abhishekmaity closed 1 year ago
@MarkEWaite added a test case to improve code coverage.
@MarkEWaite added a test case to improve code coverage.
Very good. That's a nice step.
There are some things that can improve in your development process. The plugin uses automated source code formatting so that source code formatting differences do not distract maintainers when reviewing proposed code changes. Your pull request has not been formatted with the automated source code formatter. That indicates you did not run the command mvn verify
to run the tests and confirm the static analysis checks pass (like spotbugs and source code formatting).
Before submitting a pull request, it is a good practice to run mvn verify
, since that is what will be done by the CI job. The CI job failed because you need to update the formatting of the source code. . When you run mvn verify
, you'll see a failure message that advises you to run mvn spotless:apply
Run the command mvn spotless:apply
to format the source code, then push the resulting commit to the repository.
A little more info about source formatting is in the contributing guide.
@MarkEWaite added a test case to improve code coverage.
Very good. That's a nice step.
There are some things that can improve in your development process. The plugin uses automated source code formatting so that source code formatting differences do not distract maintainers when reviewing proposed code changes. Your pull request has not been formatted with the automated source code formatter. That indicates you did not run the command
mvn verify
to run the tests and confirm the static analysis checks pass (like spotbugs and source code formatting).Before submitting a pull request, it is a good practice to run
mvn verify
, since that is what will be done by the CI job. The CI job failed because you need to update the formatting of the source code. . When you runmvn verify
, you'll see a failure message that advises you to runmvn spotless:apply
Run the command
mvn spotless:apply
to format the source code, then push the resulting commit to the repository.A little more info about source formatting is in the contributing guide.
@MarkEWaite Thanks for pointing out this important aspect. mvn verify
and mvn spotless:apply
now applied to PR
Thanks! This is a great start. Would love to have additional pull requests that further improve the test coverage.
@MarkEWaite Yes, I will try to my best knowledge.
In response #114,
Testing done
AddEmbeddableBadgeConfigStepTest.java
After changes, test coverage stands as shown below