protected void setup() throws Exception {
   boolean jarsOnPath = true;
   try {
     Class.forName("oracle.sql.TIMESTAMP");
   } catch (Exception exception) {
     jarsOnPath = false;
   }
   if (jarsOnPath) {
     throw new TestProblemException("jdbc jar must not be on the classpath for this test to run.");
   }
 }