Catel.Test.Reflection.TypeCacheFacts.TheGetTypeMethod.ReturnsRightType C# (CSharp) Method

ReturnsRightType() private method

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

                Assert.AreEqual(expectedType, type);
            }
        }