Merge remote-tracking branch 'upstream/master' into SPRNET-1518
This commit is contained in:
@@ -5,7 +5,7 @@ using Spring.Context.Support;
|
||||
namespace Spring.Objects.Factory.Support
|
||||
{
|
||||
[TestFixture]
|
||||
public class DelegatingFactoryObjectTests
|
||||
public class DelegateInvokingFactoryObjectTests
|
||||
{
|
||||
[SetUp]
|
||||
public void _TestSetUp()
|
||||
@@ -18,7 +18,7 @@ namespace Spring.Objects.Factory.Support
|
||||
private void RegisterDelegatingFactoryWithContext(bool buildSingletonObjectsWhenInvoked)
|
||||
{
|
||||
var targetBuilder = new ThingThatBuildsTargets();
|
||||
var factory = new DelegatingFactoryObject<TargetToBuild>(targetBuilder.BuildTarget, buildSingletonObjectsWhenInvoked);
|
||||
var factory = new DelegateInvokingFactoryObject<TargetToBuild>(targetBuilder.BuildTarget, buildSingletonObjectsWhenInvoked);
|
||||
|
||||
Assume.That(ContextRegistry.GetContext(), Is.InstanceOf<IConfigurableApplicationContext>(), "test requires a registered context that implements IConfigurableApplicationContext!");
|
||||
|
||||
@@ -339,7 +339,7 @@
|
||||
<Compile Include="Objects\Factory\Config\VariablePlaceholderConfigurerTests.cs" />
|
||||
<Compile Include="Objects\Factory\DefaultListableObjectFactoryPerfTests.cs" />
|
||||
<Compile Include="Objects\Factory\DummyConfigurableFactory.cs" />
|
||||
<Compile Include="Objects\Factory\Support\DelegatingFactoryObjectTests.cs" />
|
||||
<Compile Include="Objects\Factory\Support\DelegateInvokingFactoryObjectTests.cs" />
|
||||
<Compile Include="Objects\Factory\Support\ManagedNameValueCollectionTests.cs" />
|
||||
<Compile Include="Objects\Factory\Support\ManagedListTests.cs" />
|
||||
<Compile Include="Objects\Factory\Support\ManagedDictionaryTests.cs" />
|
||||
|
||||
@@ -342,6 +342,7 @@
|
||||
<Compile Include="Objects\Factory\DefaultListableObjectFactoryPerfTests.cs" />
|
||||
<Compile Include="Objects\Factory\DummyConfigurableFactory.cs" />
|
||||
<Compile Include="Objects\Factory\ObjectFactoryUtils_PreserveOrderInHierarchy_Tests.cs" />
|
||||
<Compile Include="Objects\Factory\Support\DelegateInvokingFactoryObjectTests.cs" />
|
||||
<Compile Include="Objects\Factory\Support\ManagedNameValueCollectionTests.cs" />
|
||||
<Compile Include="Objects\Factory\Support\ManagedListTests.cs" />
|
||||
<Compile Include="Objects\Factory\Support\ManagedDictionaryTests.cs" />
|
||||
@@ -359,7 +360,6 @@
|
||||
<Compile Include="Objects\LazyTestObject.cs" />
|
||||
<Compile Include="Objects\Support\AbstractSharedStateFactoryTests.cs" />
|
||||
<Compile Include="Objects\Support\ByTypeSharedStateProviderTests.cs" />
|
||||
<Compile Include="Objects\Factory\Support\DelegatingFactoryObjectTests.cs" />
|
||||
<Compile Include="Objects\Support\MethodInvokerTests.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
|
||||
Reference in New Issue
Block a user