Tests.Describer.Simple C# (CSharp) Method

Simple() private method

private Simple ( ) : void
return void
        public void Simple()
        {
            Assert.AreEqual(SimpleTypeDescription.Long, AllPublicDescriber<long>.Get());
            Assert.AreEqual(SimpleTypeDescription.ULong, AllPublicDescriber<ulong>.Get());
            Assert.AreEqual(SimpleTypeDescription.Int, AllPublicDescriber<int>.Get());
            Assert.AreEqual(SimpleTypeDescription.UInt, AllPublicDescriber<uint>.Get());
            Assert.AreEqual(SimpleTypeDescription.Short, AllPublicDescriber<short>.Get());
            Assert.AreEqual(SimpleTypeDescription.UShort, AllPublicDescriber<ushort>.Get());
            Assert.AreEqual(SimpleTypeDescription.Byte, AllPublicDescriber<byte>.Get());
            Assert.AreEqual(SimpleTypeDescription.SByte, AllPublicDescriber<sbyte>.Get());
            Assert.AreEqual(SimpleTypeDescription.Char, AllPublicDescriber<char>.Get());
            Assert.AreEqual(SimpleTypeDescription.String, AllPublicDescriber<string>.Get());
            Assert.AreEqual(SimpleTypeDescription.Decimal, AllPublicDescriber<decimal>.Get());
            Assert.AreEqual(SimpleTypeDescription.Double, AllPublicDescriber<double>.Get());
            Assert.AreEqual(SimpleTypeDescription.Float, AllPublicDescriber<float>.Get());
        }