...
- Using JQuery for javascript
- Using JqueryUI plugins for widgets
- Third-party Jquery Plugins?
- No old-style javascript embedded in HTML tags (e.g. onClick)
- Have accessibility guidelines been followed?
- Is HTML valid?
...
- Don’t set attributes inside a getter
7. Unit Tests
- Unit tests must verify the results of method calls using Junit asserts.
- What is the code coverage?
8. Java - General
- Use constants declared as static variables rather than hard-coding values in the Java code.
- Place instance variables at the top of the class; getters and setters at the bottom of the class.
- Use log level of “debug” unless there’s a specific reason to use info or error.
- Methods and classes documented accurately with javadoc.
- Method has unit test.
8. Unit Tests
9. App Config/Layout
- Spring XML files must not specify a Spring version in the schema location spec.What is the code coverage?