Ejemplo n.º 1
0
 void Container_MissingType(object sender, MissingTypeEventArgs e)
 {
     Log.Warning("Ioc Container Missing Type " + e.InterfaceType.FullName);
 }
Ejemplo n.º 2
0
            public void SetsValuesCorrectly()
            {
                var eventArgs = new MissingTypeEventArgs(typeof(ITestInterface));

                Assert.AreEqual(typeof(ITestInterface), eventArgs.InterfaceType);
            }