You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Kevin Zhou (JIRA)" <ji...@apache.org> on 2009/05/12 09:52:45 UTC

[jira] Updated: (HARMONY-6146) [classlib][luni][java6] java.util.Properties.Properties(defaults).stringPropertyNames() should return a set of keys including the keys in the default property list

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

Kevin Zhou updated HARMONY-6146:
--------------------------------

    Attachment: HARMONY-6146v3.diff

Recently there is some changes merged from trunk5 to trunk6. I made a new patch for the latest code. Do you think this patch is valid for the defect?

> [classlib][luni][java6] java.util.Properties.Properties(defaults).stringPropertyNames() should return a set of keys including the keys in the default property list
> -------------------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-6146
>                 URL: https://issues.apache.org/jira/browse/HARMONY-6146
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>    Affects Versions: 5.0M8
>            Reporter: Kevin Zhou
>            Assignee: Tim Ellison
>             Fix For: 5.0M9
>
>         Attachments: HARMONY-6146.diff, HARMONY-6146v2.diff, HARMONY-6146v3.diff
>
>   Original Estimate: 48h
>  Remaining Estimate: 48h
>
> Given a test case [1], RI passes while HY fails.
> The java spec specifies that java.util.Properties.stringPropertyNames() should return a set of keys in this property list, also including the keys in the default property list.
> [1] Test Case:
> public void test_Properties_stringPropertyNames() {
>     Properties properties = new Properties();
>     properties.setProperty("key", "value");
>     Properties properties2 = new Properties(properties);
>     assertEquals(1, properties2.stringPropertyNames().size());
>     Properties properties3 = new Properties(properties2);
>     assertEquals(1, properties3.stringPropertyNames().size());
> }

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