ChangeLog 3.9 KB

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