AjErl.Tests.Utilities.TypeUtilitiesTests.GetLibraryTypeByName C# (CSharp) Method

GetLibraryTypeByName() private method

private GetLibraryTypeByName ( ) : void
return void
        public void GetLibraryTypeByName()
        {
            Type type = TypeUtilities.GetType("AjErl.Context");

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