System.Json.Tests.JsonValueTests.Parse_InvalidNumericString_ThrowsFormatException C# (CSharp) Method

Parse_InvalidNumericString_ThrowsFormatException() private method

private Parse_InvalidNumericString_ThrowsFormatException ( ) : void
return void
        public void Parse_InvalidNumericString_ThrowsFormatException()
        {
            Assert.Throws<FormatException>(() => JsonValue.Parse("1E!"));
        }
        
JsonValueTests