Catel.Test.Reflection.TypeCacheFacts.TheGetTypeMethod.ReturnsRightType C# (CSharp) 메소드

ReturnsRightType() 개인적인 메소드

private ReturnsRightType ( string typeName, Type expectedType ) : void
typeName string
expectedType System.Type
리턴 void
            public void ReturnsRightType(string typeName, Type expectedType)
            {
                var type = TypeCache.GetType(typeName);

                Assert.AreEqual(expectedType, type);
            }
        }