using NUnit.Framework; using Assert = ModestTree.Assert; namespace Zenject.Tests.Conditions { [TestFixture] public class TestConditionsTarget : ZenjectUnitTestFixture { class Test0 { } class Test1 { public Test1(Test0 test) { } } class Test2 { public Test2(Test0 test) { } } public override void Setup() { base.Setup(); Container.Bind().AsSingle().When(r => r.ObjectType == typeof(Test2)); } [Test] public void TestTargetConditionError() { Container.Bind().AsSingle().NonLazy(); Assert.Throws( delegate { Container.Resolve(); }); } [Test] public void TestTargetConditionSuccess() { Container.Bind().AsSingle().NonLazy(); var test2 = Container.Resolve(); Assert.That(test2 != null); } } }