ChangeLog 2.7 KB

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