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

TypeExtentions_GetTypeFromSimpleName_WhenUInt32_ExpectUInt32() private method

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

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

            var result = TypeExtensions.GetTypeFromSimpleName(myType);

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

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