21 references to CheckLiteralToString
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (21)
Syntax\SyntaxFactoryTests.vb (21)
53CheckLiteralToString("A", """A""") 58CheckLiteralToString("A"c, """A""c") 65CheckLiteralToString(UInteger.MinValue, "0UI") 66CheckLiteralToString(UInteger.MaxValue, "4294967295UI") 69CheckLiteralToString(0, "0") 70CheckLiteralToString(Integer.MinValue, "-2147483648") 71CheckLiteralToString(Integer.MaxValue, "2147483647") 74CheckLiteralToString(ULong.MinValue, "0UL") 75CheckLiteralToString(ULong.MaxValue, "18446744073709551615UL") 78CheckLiteralToString(0L, "0L") 79CheckLiteralToString(Long.MinValue, "-9223372036854775808L") 80CheckLiteralToString(Long.MaxValue, "9223372036854775807L") 83CheckLiteralToString(0.0F, "0F") 84CheckLiteralToString(0.012345F, "0.012345F") 88CheckLiteralToString(Single.MaxValue, "3.4028235E+38F") 92CheckLiteralToString(0.0, "0") 93CheckLiteralToString(0.012345, "0.012345") 94CheckLiteralToString(Double.MaxValue, "1.7976931348623157E+308") 97CheckLiteralToString(0D, "0D") 98CheckLiteralToString(0.012345D, "0.012345D") 99CheckLiteralToString(Decimal.MaxValue, "79228162514264337593543950335D")