Thread: [JDBC] [pgjdbc/pgjdbc] 3f2a02: test: check that new properties followcorrect low...

  Branch: refs/heads/master
  Home:   https://github.com/pgjdbc/pgjdbc
  Commit: 3f2a02e128367df6ae47b6f850203200cef223fe
      https://github.com/pgjdbc/pgjdbc/commit/3f2a02e128367df6ae47b6f850203200cef223fe
  Author: Jorge Solorzano <jorsol@gmail.com>
  Date:   2017-03-15 (Wed, 15 Mar 2017)

  Changed paths:
    M pgjdbc/src/test/java/org/postgresql/test/jdbc2/PGPropertyTest.java

  Log Message:
  -----------
  test: check that new properties follow correct lower camel case (#740)

To avoid bad declaration of new properties in the driver, this test
check that the name of the enum matches the name of the property and that
for each "_" in the enum uses the lower camel case for the property.

There is an exclusion list for the properties that do not follow
the correct lower camel case but are retained for backward compatibility.

closes #727