Versions Compared

Key

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

...

  • Application Framework: Spring
  • Test: JUnit as test framework, Easy Mock 3.0 for mock objects in unit tests 
  • Mock Objects: Use Mockito to Mock up objects for tests.
  • Dates:
    • All dates should be in ISO-8601 format.
    • ISO-8601 is the default for the joda-time library
    • Use the DateTime object from joda-time. Do not use java.text.DateFormat or java.text.SimpleDateFormat.
    • The reason for doing this is to make the right thing (ISO-8601) the easy thing. If you instead write out your own date formats, date/timezone bugs are easier to create.

R

...