Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6396111

api/java_sql/Timestamp/descriptions.html#ValueOf[Timestamp0020] test fails due to wrong exception

XMLWordPrintable

    • generic
    • generic

      JCK : JCK6.0 b19
      J2SE : FAIL - *SINCE* mustang b74
      Platform[s] : FAIL - all
      switch/Mode : FAIL - default

      Negative test api/java_sql/Timestamp/descriptions.html#ValueOf[Timestamp0020] fails since mustang b74 because Timestamp throws ArrayOutOfBoundsException instead of IllegalArgumentException.

      Steps to reproduce:

      compile and run the following code. It returns different messages on mustang b73 and b74.

      import java.sql.*;

      public class ValueOfTests {
          public static void main(String argv[]) {
            try {
              Timestamp t = Timestamp.valueOf("1996-10-10 12:30:40:50");
              System.out.println("Test failed, valueOf() = " + t);
            }
            catch (IllegalArgumentException e)
            {
              System.out.println( "OKAY" );
            }
            catch (Exception e)
            {
              e.printStackTrace();
            }
          }
      }

            ahandasunw Amit Handa (Inactive)
            pastepan Pavel Stepanov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: