SPRNET-1242 added support for collection property merging of Set<T> and List<T>
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user