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

[jira] Commented: (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:comment-tabpanel#action_12480750 ] 

Alexey Petrenko commented on HARMONY-3351:
------------------------------------------

Sean, please verify.

> [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
>         Assigned To: 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.