Catel.Test.Reflection.TypeCacheFacts.TheGetTypesImplementingInterfaceMethod.ReturnsRightTypes C# (CSharp) Method

ReturnsRightTypes() private method

private ReturnsRightTypes ( ) : void
return void
            public void ReturnsRightTypes()
            {
                var interfaces = TypeCache.GetTypesImplementingInterface(typeof (IMySpecialInterface));

                Assert.AreEqual(1, interfaces.Length);
                Assert.AreEqual(typeof(MySpecialClass), interfaces[0]);
            }
        }
TypeCacheFacts.TheGetTypesImplementingInterfaceMethod