You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2007/01/15 21:47:28 UTC

[jira] Closed: (HARMONY-2468) [classlib][awt] java.awt.Choice.insert(null, 0) does not throw NPE while RI throws it

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

Mark Hindess closed HARMONY-2468.
---------------------------------


Verified.  Thanks.

> [classlib][awt] java.awt.Choice.insert(null, 0) does not throw NPE while RI throws it
> -------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2468
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2468
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: Choice.patch, ChoiceTest.patch
>
>
> Test case:
> --------------
> import java.awt.Choice;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         Choice c = new Choice();
>         try {
>             c.insert(null, 0);
>             fail("NPE expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> -------------
> .F
> Time: 0.621
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NPE expected
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

-- 
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