AjErl.Tests.Utilities.TypeUtilitiesTests.GetTypeByName C# (CSharp) 메소드

GetTypeByName() 개인적인 메소드

private GetTypeByName ( ) : void
리턴 void
        public void GetTypeByName()
        {
            Type type = TypeUtilities.GetType("System.Int32");

            Assert.IsNotNull(type);
            Assert.AreEqual(typeof(int), type);
        }