System.out.println("Performing tests...");
System.out.println("***");
for (int i = 0; i < BOXEN3D.length; i++) {
try {
PGbox3d candidate = new PGbox3d(BOXEN3D[i]);
test(BOXEN3D[i], candidate, conns, false);
} catch (SQLException e) {
System.out.println("--- Instantiation of " + BOXEN3D[i] + "failed:");
System.out.println("--- " + e.getMessage());
failcount++;