You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Sean Qiu (JIRA)" <ji...@apache.org> on 2007/06/13 03:43:26 UTC

[jira] Closed: (HARMONY-3351) [classlib][awt] when pass null to the setTitle(String) of Frame, Harmony will get null rather than get "" in RI

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

Sean Qiu closed HARMONY-3351.
-----------------------------


Thanks Alexey .
Verified by Sean.

> [classlib][awt] when pass null to the setTitle(String) of Frame, Harmony will get null rather than get "" in RI
> ---------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-3351
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3351
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Ubuntu
>            Reporter: Sean Qiu
>            Assignee: Alexey Petrenko
>            Priority: Minor
>
> After set the title of Fram to null, invoking the getTitle() will get null in harmony while RI will get empty String "".
> >>>>>>>>>>>
> public class FrameRTest extends TestCase {
>     /**
>      * @tests java.awt.Frame#setTitle(String)
>      */
>     public void test_setTitleLjava_lang_String() {
>         Frame frame = new Frame();
>         frame.setTitle(null);
>         assertEquals("", frame.getTitle());
>     }
> }
> >>>>>>>>>>>
> Result
> RI: Pass
> Hr: Fail

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