[ https://issues.apache.org/jira/browse/HARMONY-6146?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Kevin Zhou updated HARMONY-6146:
--------------------------------
Attachment: HARMONY-6146.diff
Would you please help to try it?
> [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
> Fix For: 5.0M9
>
> Attachments: HARMONY-6146.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.
|