You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexei Zakharov (JIRA)" <ji...@apache.org> on 2007/01/12 19:09:27 UTC

[jira] Assigned: (HARMONY-2767) [classlib][swing] javax.swing.plaf.basic.BasicSplitPaneUI.getMaximumSize(JScrollBar sb) throws NPE while RI does not

     [ https://issues.apache.org/jira/browse/HARMONY-2767?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov reassigned HARMONY-2767:
----------------------------------------

    Assignee: Alexei Zakharov

> [classlib][swing] javax.swing.plaf.basic.BasicSplitPaneUI.getMaximumSize(JScrollBar sb) throws NPE while RI does not
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2767
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2767
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Assigned To: Alexei Zakharov
>         Attachments: Harmony-2767-Make.patch, Harmony-2767-Test.patch, Harmony-2767.patch
>
>
> Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSplitPaneUI.getMaximumSize(JScrollBar sb) while RI works silently.
> junit test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.JScrollBar;
> import java.awt.Dimension;
> import javax.swing.plaf.basic.BasicSplitPaneUI;
> public class test extends TestCase 
> {
>         public void testcase0()
>         { 
>                 BasicSplitPaneUI localBasicSplitPaneUI = new
> BasicSplitPaneUI();
>                 JScrollBar localJScrollBar = new JScrollBar();
>                 try 
>                 {
>                         localBasicSplitPaneUI.getMaximumSize(localJScrollBar);
>                         System.out.println("works silently");
>                         assertEquals(true, true);
>                 } 
>                 catch (NullPointerException unexpectedException) 
>                 {fail("Unspecified "+unexpectedException+" was thrown");
>                 }
>         }
> }
> OUTPUT:
> Harmony+j9:
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as
> app
> licable.
> .F
> Time: 1.391
> There was 1 failure:
> 1) testcase0(test)junit.framework.AssertionFailedError: Unspecified
> java.lang.Nu
> llPointerException was thrown
>         at test.testcase0(test.java:19)
>         at
> java.lang.reflect.AccessibleObject.invokeV(AccessibleObject.java:205)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0
> ------------------------------------------------------------------------
> SUN
> java version "1.5.0_06"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
> Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode)
> .works silently
> Time: 0.703
> OK (1 test)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira