Initial Commit
This commit is contained in:
+47
@@ -0,0 +1,47 @@
|
||||
using System.Linq;
|
||||
using NUnit.Framework;
|
||||
using Assert = ModestTree.Assert;
|
||||
|
||||
namespace Zenject.Tests.Other
|
||||
{
|
||||
[TestFixture]
|
||||
public class TestClearCacheProvider : ZenjectUnitTestFixture
|
||||
{
|
||||
public interface IFoo
|
||||
{
|
||||
}
|
||||
|
||||
public class Foo1 : IFoo
|
||||
{
|
||||
}
|
||||
|
||||
public class Foo2 : IFoo
|
||||
{
|
||||
}
|
||||
|
||||
// For issue https://github.com/modesttree/Zenject/issues/441
|
||||
[Test]
|
||||
public void Test1()
|
||||
{
|
||||
Container.Bind<IFoo>().To<Foo1>().AsSingle();
|
||||
|
||||
Assert.That(Container.Resolve<IFoo>() is Foo1);
|
||||
|
||||
var context = new InjectContext(Container, typeof(IFoo));
|
||||
|
||||
var provider = Container.AllProviders.OfType<CachedProvider>()
|
||||
.Where(x => x.GetInstanceType(context) == typeof(Foo1)).Single();
|
||||
|
||||
Assert.IsEqual(provider.NumInstances, 1);
|
||||
|
||||
provider.ClearCache();
|
||||
|
||||
Assert.IsEqual(provider.NumInstances, 0);
|
||||
|
||||
Container.Rebind<IFoo>().To<Foo2>().AsSingle();
|
||||
|
||||
Assert.That(Container.Resolve<IFoo>() is Foo2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user