Lines Matching defs:value

344         [TestCase("1.0000000000000000000000001", 1d)] // We don't notice that we haven't preserved the exact value
483 // long.MaxValue isn't actually representable as a double. This string value is the highest
484 // representable value which isn't greater than long.MaxValue.
498 // we end up with the exact value of long.MinValue due to lack of precision. The value here
510 // ulong.MaxValue isn't representable as a double. This value is the largest double within
534 [TestCase("1.0000000000000000000000001", 1d)] // We don't notice that we haven't preserved the exact value
599 // The simplest way of testing that the value has parsed correctly is to reformat it,
601 // so in those cases we accept an expectedFormatted value of null. Sometimes the results
766 // The simplest way of testing that the value has parsed correctly is to reformat it,
768 // so in those cases we accept an expectedFormatted value of null. Sometimes the results
781 [TestCase("1.123456789s ", Description = "Whitespace after value")]
869 string valueFirstJson = "{ \"value\": \"1673-06-19T12:34:56Z\", \"@type\": \"type.googleapis.com/google.protobuf.Timestamp\" }";
924 public void EnumValid(string value, ForeignEnum expectedValue)
926 string json = "{ \"singleForeignEnum\": " + value + " }";
934 public void Enum_Invalid(string value)
936 string json = "{ \"singleForeignEnum\": " + value + " }";
969 public void UnknownField_Ignored(string value)
972 string json = "{ \"unknownField\": " + value + ", \"singleString\": \"x\" }";
996 // Otherwise, it would end up as a string "NULL_VALUE" (the name of the enum value).