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/24 18:17:49 UTC

[jira] Assigned: (HARMONY-2446) [classlib][awt] java.awt.DefaultKeyboardFocusManager.setDefaultFocusTraversalKeys() does not throw IllegalArgumentException if second argument is null

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

Alexei Zakharov reassigned HARMONY-2446:
----------------------------------------

    Assignee: Alexei Zakharov

> [classlib][awt] java.awt.DefaultKeyboardFocusManager.setDefaultFocusTraversalKeys() does not throw IllegalArgumentException if second argument is null
> ------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2446
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2446
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: KeyboardFocusManager.patch, KeyboardFocusManagerRTest.patch
>
>
> Test case:
> ----------------
> import java.awt.DefaultKeyboardFocusManager;
> import java.awt.KeyboardFocusManager;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         DefaultKeyboardFocusManager dkm = new DefaultKeyboardFocusManager();
>         try {
>             dkm.setDefaultFocusTraversalKeys(
>                     KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, null);
>             fail("IAE expected");
>         } catch (IllegalArgumentException e) {
>         } catch (Exception e) {
>             fail(e.getMessage());
>         }
>     }
> }
> RI output:
> --------------
> .
> Time: 0,701
> OK (1 test)
> Harmony output:
> --------------
> .F
> Time: 0.491
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: IAE expected
> 	at TheTest.testcase1(TheTest.java:17)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.