Backlog / deficit 

There are a lot of tests and we have decent functional coverage but even so there's a lot of accumulated issues that we should address.
In rough priority order the main categories for the tests themselves are :

Writing stable automated client tests

Reliable automated GUI testing is hard work since rendering may be

  1. different from platform to platform
  2.  Affected by O/S desktop changes
  3.  Affected by platform specifics such as display resolution, color profiles, keyboard shortcuts
  4.  Affected by timing issues

 etc.

We expect automated tests to be resilient against these and pass reliably 99.99% of the time
Tests which are considered to be "important" should pass with even greater reliability.

Many of our automated tests that are headful make use of the java.awt.Robot API to

- deliver mouse and key input events
- grab portions of the screen for comparison against expected rendering.
   These have additional considerations.

The following are some guidelines that should be followed in writing client tests and
to ensure stability and reliability of those tests. This will be added to and refined over time.