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/02/06 14:23:06 UTC

[jira] Assigned: (HARMONY-2573) [classlib][swing] javax.swing.JEditorPane.isFocusCycleRoot() returns false while RI returns true

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

Alexei Zakharov reassigned HARMONY-2573:
----------------------------------------

    Assignee: Alexei Zakharov

> [classlib][swing] javax.swing.JEditorPane.isFocusCycleRoot() returns false while RI returns true
> ------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2573
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2573
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: Harmony-2573-Fix.patch, Harmony-2573-Make.patch, Harmony-2573-Test.patch
>
>
> Test case:
> --------------
> import javax.swing.JEditorPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         JEditorPane ep = new JEditorPane();
>         assertTrue(ep.isFocusCycleRoot());
>     }
> }
> Harmony output:
> -----------------
> .F
> Time: 1.262
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError
> 	at TheTest.testcase1(TheTest.java:13)
> 	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.
-
You can reply to this email to add a comment to the issue online.