Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Effective Unit tests
  2. Effective Integration tests written for Marvin, covering sanity and other feature functionality
  3. No Check Style Issues reported.
  4. Should have passed BVT on simulator at least. Check the below link for usage on Simulator, if we can run hardware tests and added functionality change effects that code, then hardware tests also should run and pass.
     https://cwiki.apache.org/confluence/display/CLOUDSTACK/Validating+check-ins+for+your+local+changes%2C+using+Simulator
  5. 0 Static analysis issues reported in new code addition, either through findbugs, coverity, pmd etc. How to use findbugs at the link below:
    https://cwiki.apache.org/confluence/display/CLOUDSTACK/Using+FindBugs 
  6. Effective documentation or wiki page updates.
  7. Have enough code documentation available for users to understand the code flow.
  8. Have effective exception handling and appropriate logging information 
  9. Avoid hard coded values where possible and move them to config.
  10. Follow common naming conventions and practices as adhered in other available modules.
  11. Avoid exact copy paste code and duplicate code.
  12. Submit the test run logs, static analysis reports, and other misc information to the submission.
  13. Any new command addition or existing interface modification, corresponding changes to simulator code as well need to be added.

...