ChangeLog 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. 2010-03-10 Atsushi Enomoto <[email protected]>
  2. * DataContractJsonSerializerTest.cs : oops, the test was careless.
  3. Use fixed date.
  4. 2010-03-09 Atsushi Enomoto <[email protected]>
  5. * DataContractJsonSerializerTest.cs : add test for bug #586169.
  6. * JsonWriterTest.cs : add standalone write case for "\/".
  7. 2010-01-27 Atsushi Enomoto <[email protected]>
  8. * DataContractJsonSerializerTest.cs :
  9. enable TypeIsNotPartsOfKnownTypes(), and add more related tests.
  10. 2010-01-27 Atsushi Enomoto <[email protected]>
  11. * DataContractJsonSerializerTest.cs : make some tests narrow down
  12. possible cause of errors to detect expected errors more precisely.
  13. 2010-01-27 Atsushi Enomoto <[email protected]>
  14. * DataContractJsonSerializerTest.cs : null-string case is working.
  15. 2010-01-27 Atsushi Enomoto <[email protected]>
  16. * DataContractJsonSerializerTest.cs : invalidate previous non-working
  17. tests.
  18. 2010-01-25 Sebastien Pouliot <[email protected]>
  19. * DataContractJsonSerializerTest.cs: Add non-working test cases
  20. for null-string, known types and handling floating point special
  21. values
  22. 2009-12-11 Chris Toshok <[email protected]>
  23. * DataContractJsonSerializerTest.cs: add a test case for
  24. non-public properties.
  25. 2009-12-11 Atsushi Enomoto <[email protected]>
  26. * JsonReaderTest.cs : another number parse case.
  27. 2009-11-20 Atsushi Enomoto <[email protected]>
  28. * DataContractJsonSerializerTest.cs : added ignored test case that
  29. verifies 2.1 behavior (with another case that justifies removal
  30. of the previous hack).
  31. 2009-10-08 Atsushi Enomoto <[email protected]>
  32. * DataContractJsonSerializerTest.cs : added test for
  33. alwaysEmitTypeInformation argument.
  34. 2009-09-07 Atsushi Enomoto <[email protected]>
  35. * DataContractJsonSerializerTest.cs : fix non-datacontract
  36. serialization test. It depended on IPAddress field internals
  37. (runtime serialization incompatibility).
  38. 2009-03-13 Andreia Gaita <[email protected]>
  39. * JsonReaderTest.cs: test for skip and depth (if depth fails, skip is affected)
  40. 2009-02-02 Atsushi Enomoto <[email protected]>
  41. * DataContractJsonSerializerTest.cs : fixed some tests to match
  42. .NET RTM behavior. Added read-only collection case, (but [Ignore]d).
  43. 2009-02-02 Atsushi Enomoto <[email protected]>
  44. * DataContractJsonSerializerTest.cs : added test for contract-less
  45. serialization.
  46. 2008-02-18 Atsushi Enomoto <[email protected]>
  47. * DataContractJsonSerializerTest.cs : added couple of DBNull tests.
  48. 2008-01-30 Atsushi Enomoto <[email protected]>
  49. * DataContractJsonSerializerTest.cs : added deserialization tests
  50. for typed object with "__type".
  51. 2008-01-30 Atsushi Enomoto <[email protected]>
  52. * JsonReaderTest.cs : test GetAttribute() for "__type".
  53. 2008-01-30 Atsushi Enomoto <[email protected]>
  54. * JsonReaderTest.cs : added tests for "__type" attributes (some of
  55. them are not working yet).
  56. 2008-01-24 Atsushi Enomoto <[email protected]>
  57. * JsonReaderTest.cs : test "type" attribute in several nodes.
  58. 2008-01-24 Atsushi Enomoto <[email protected]>
  59. * DataContractJsonSerializerTest.cs : some more deserialization tests.
  60. 2008-01-22 Atsushi Enomoto <[email protected]>
  61. * JsonWriterTest.cs : added test for writing __type attribute.
  62. * DataContractJsonSerializerTest.cs : added more random-ish tests.
  63. 2007-12-05 Atsushi Enomoto <[email protected]>
  64. * DataContractJsonSerializerTest.cs :
  65. moved from Test/System.Runtime.Serialization and fixed some.
  66. * JsonReaderTest.cs, JsonWriterTest.cs : moved from Test/System.Xml.