コード例 #1
0
        public void SetPropertyChainValue()
        {
            FakeServiceLocatorObjectWithTimer temp = this.ServiceLocator.ResolveSingle <FakeServiceLocatorObjectWithTimer>();

            Assert.AreEqual(TimeSpan.FromMinutes(15), temp.Timer.Interval);
        }
コード例 #2
0
        public void ResolveDependencyByKey()
        {
            FakeServiceLocatorObjectWithTimer temp = this.ServiceLocator.ResolveSingle <FakeServiceLocatorObjectWithTimer>();

            Assert.IsInstanceOfType(temp.Timer, typeof(TimersTimer));
        }