Catel.Test.Reflection.TypeCacheFacts.TheGetTypeMethod.ReturnsRightType C# (CSharp) Méthode

ReturnsRightType() private méthode

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

                Assert.AreEqual(expectedType, type);
            }
        }