Lines Matching refs:InvalidJsonException
437 [TestCase("+0", typeof(InvalidJsonException))]
438 [TestCase("00", typeof(InvalidJsonException))]
439 [TestCase("-00", typeof(InvalidJsonException))]
440 [TestCase("--1", typeof(InvalidJsonException))]
441 [TestCase("+1", typeof(InvalidJsonException))]
561 Assert.Throws<InvalidJsonException>(() => TestAllTypes.Parser.ParseJson(json)); in NumberToDouble_Invalid()
583 [TestCase("1,0", typeof(InvalidJsonException))]
584 [TestCase("1.0.0", typeof(InvalidJsonException))]
585 [TestCase("+1", typeof(InvalidJsonException))]
586 [TestCase("00", typeof(InvalidJsonException))]
587 [TestCase("--1", typeof(InvalidJsonException))]
870 Assert.Throws<InvalidJsonException>(() => TestAllTypes.Parser.ParseJson(json)); in DataAfterObject()