Dev2.Tests.TypeExtentionTest.TypeExtentions_GetTypeFromSimpleName_WhenSByte_ExpectSByte C# (CSharp) Method

TypeExtentions_GetTypeFromSimpleName_WhenSByte_ExpectSByte() private method

        public void TypeExtentions_GetTypeFromSimpleName_WhenSByte_ExpectSByte()
        {
            //------------Setup for test--------------------------
            const string myType = "SByte";

            //------------Execute Test---------------------------

            var result = TypeExtensions.GetTypeFromSimpleName(myType);

            //------------Assert Results-------------------------

            Assert.AreEqual(typeof(SByte), result);
        }
TypeExtentionTest