ChangeLog 3.8 KB

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