ChangeLog 2.4 KB

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