SPRNET-1242 added support for collection property merging of Set<T> and List<T>

This commit is contained in:
sbohlen
2011-05-13 00:15:26 +00:00
parent 5a5f5a92ab
commit f605067636
4 changed files with 108 additions and 12 deletions

View File

@@ -6,7 +6,7 @@
<object id="parentWithList" type="Spring.Objects.TestObject, Spring.Core.Tests">
<property name="SomeGenericStringList">
<list>
<list element-type="string">
<value>Rob Harrop</value>
<value>Rod Johnson</value>
</list>
@@ -15,7 +15,7 @@
<object id="childWithList" parent="parentWithList">
<property name="SomeGenericStringList">
<list merge="true">
<list element-type="string" merge="true">
<value>Juergen Hoeller</value>
</list>
</property>

View File

@@ -39,7 +39,7 @@ namespace Spring.Objects.Factory.Xml
/// <author>Rick Evans</author>
/// <author>Mark Pollack (.NET)</author>
[TestFixture]
[Ignore("SPRNET-1242 Support for collection merging with generic collections")]
[Description("SPRNET-1242 Support for collection merging with generic collections")]
public class CollectionMergingGenericTests
{
private DefaultListableObjectFactory objectFactory;