ChangeLog 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. 2010-01-28 Atsushi Enomoto <[email protected]>
  2. * ServiceContractGeneratorTest.cs : add test for async method
  3. generation option to generate sync methods as well.
  4. 2010-01-22 Atsushi Enomoto <[email protected]>
  5. * ServiceMetadataBehaviorTest.cs : check name constant (MSDN is
  6. wrong here).
  7. 2010-01-19 Atsushi Enomoto <[email protected]>
  8. * ServiceAuthorizationBehaviorTest.cs : it's updated and enabled.
  9. Added some more tests.
  10. 2010-01-06 Atsushi Enomoto <[email protected]>
  11. * ServiceDebugBehaviorTest.cs : make sure to close hosts.
  12. 2009-10-01 Atsushi Enomoto <[email protected]>
  13. * ServiceContractGeneratorTest.cs : new test.
  14. 2009-09-15 Atsushi Enomoto <[email protected]>
  15. * ServiceDebugBehaviorTest.cs : it still seems there are some port-
  16. blocking tests that blocks here, so change the port and make sure
  17. it is available. 8080 is anyways likely to interfere with others.
  18. 2009-07-31 Atsushi Enomoto <[email protected]>
  19. * ServiceEndpointTest.cs : new.
  20. 2009-07-02 Atsushi Enomoto <[email protected]>
  21. * ContractDescriptionTest.cs : make sure the contract actually
  22. contains operations from the base types.
  23. 2009-07-02 Atsushi Enomoto <[email protected]>
  24. * ContractDescriptionTest.cs : added test for derived contract type.
  25. 2009-06-09 Atsushi Enomoto <[email protected]>
  26. * ServiceThrottlingBehaviorTest.cs : new.
  27. 2009-02-24 Atsushi Enomoto <[email protected]>
  28. * WsdlExporterTest.cs:
  29. Ignore all failing-under-dotnet tests
  30. 2008-05-22 Roei Erez <[email protected]>
  31. * fix ContractDescription.GetContract implementation
  32. * Refactor Request processing
  33. * Add support for message inspectors
  34. * Add support for InstanceContextProvider & InstanceProvider, including lifecycles events
  35. like: ReleaseServiceInstance, Open, Close...
  36. * Add relevant test cases.
  37. 2008-05-01 Eyal Alaluf <[email protected]>
  38. * ContractDescriptionTest.cs: Add test with method operation, parameters
  39. and return value names specified by attributes.
  40. 2008-04-21 Igor Zelmanovich <[email protected]>
  41. * ServiceDebugBehaviorTest.cs: new testfixture.
  42. * ServiceMetadataBehaviorTest.cs: new testfixture.
  43. 2008-04-21 Igor Zelmanovich <[email protected]>
  44. * WsdlExporterTest.cs: added new test.
  45. 2008-04-10 Eyal Alaluf <[email protected]>
  46. * TypedMessageConverterTest.cs: Enabled and extended the roundtrip tests.
  47. Used XML namespaces for the message data types.
  48. 2008-03-30 Atsushi Enomoto <[email protected]>
  49. * WsdlExporterTest.cs, WsdlImporterTest.cs,
  50. ContractDescriptionTest.cs : marked coupled of tests as NotWorking.
  51. 2008-03-23 Vladimir Krasnov <[email protected]>
  52. * OperationDescriptionTest.cs: added parts and namespace tests
  53. 2007-08-19 Atsushi Enomoto <[email protected]>
  54. * WsdlImporterTest.cs : fix tests under run-test-ondotnet with 3.5.
  55. 2007-08-19 Atsushi Enomoto <[email protected]>
  56. * WsdlImporterTest.cs : use one tab instead of " ".
  57. 2007-08-19 Atsushi Enomoto <[email protected]>
  58. * WsdlExporterTest.cs : oops, fix errors.
  59. 2007-08-19 Atsushi Enomoto <[email protected]>
  60. * WsdlImporterTest.cs WsdlExporterTest.cs : warning cleanup.
  61. 2007-03-26 Atsushi Enomoto <[email protected]>
  62. * ContractDescriptionTest.cs : added conceptual test case that shows
  63. MessageBodyAttribute is not inferred.
  64. 2006-10-04 Atsushi Enomoto <[email protected]>
  65. * ContractDescriptionTest.cs : added test to reject async operation
  66. whose name does not begin with "Begin".
  67. 2006-10-04 Atsushi Enomoto <[email protected]>
  68. * ContractDescriptionTest.cs : added test to reject duplicate
  69. operation names.
  70. 2006-10-03 Atsushi Enomoto <[email protected]>
  71. * ContractDescriptionTest.cs : added some async contract tests.
  72. 2006-09-15 Atsushi Enomoto <[email protected]>
  73. * ClientCredentialsTest.cs : split default property value tests into
  74. each individual peoperty test, and added some more.
  75. 2006-09-14 Atsushi Enomoto <[email protected]>
  76. * ServiceCredentialsTest.cs : new test.
  77. 2006-09-08 Ankit Jain <[email protected]>
  78. * WsdlExporterTest.cs: Add more tests. Remove redundant ones.
  79. 2006-09-07 Ankit Jain <[email protected]>
  80. * WsdlExporterTest.cs (ExportContractInvalid1): Remove "NotWorking".
  81. 2006-09-07 Ankit Jain <[email protected]>
  82. * WsdlExporterTest.cs (ExportContractInvalid1): New.
  83. 2006-09-07 Ankit Jain <[email protected]>
  84. * WsdlExporterTest.cs: New. Incomplete.
  85. 2006-09-05 Atsushi Enomoto <[email protected]>
  86. * ContractDescriptionTest.cs : added ignorable test that treats
  87. IRequestChannel as a service contract. We don't need that.
  88. 2006-07-28 Atsushi Enomoto <[email protected]>
  89. * ClientCredentialsTest.cs : new file.
  90. 2006-07-14 Atsushi Enomoto <[email protected]>
  91. * TypedMessageConverterTest.cs : Added StandardRoundtrip(), though
  92. NotWorking.
  93. 2006-07-14 Atsushi Enomoto <[email protected]>
  94. * TypedMessageConverterTest.cs : added StandardToMessage().
  95. 2006-07-13 Ankit Jain <[email protected]>
  96. * WsdlImporterTest.cs: More June CTP updates.
  97. * dump.xml: Regenerated for June CTP.
  98. * MetadataResolverTest.cs: New.
  99. 2006-07-13 Atsushi Enomoto <[email protected]>
  100. * ContractDescriptionTest.cs :
  101. Added test for async pattern (IMetadataExchange).
  102. 2006-07-06 Atsushi Enomoto <[email protected]>
  103. * ContractDescriptionTest.cs :
  104. Added test for methods that takes and returns Message.
  105. Added test for invalid async pattern.
  106. 2006-07-06 Atsushi Enomoto <[email protected]>
  107. * ContractDescriptionTest.cs, TypedMessageConverterTest.cs :
  108. June CTP fixes.
  109. 2006-07-05 Atsushi Enomoto <[email protected]>
  110. * ContractDescriptionTest.cs : [MessageBody] -> [MessageBodyMember].
  111. 2006-07-05 Atsushi Enomoto <[email protected]>
  112. * WsdlImporterTest.cs,
  113. ContractDescriptionTest.cs : reflect June CTP updates.
  114. 2006-07-03 Ankit Jain <[email protected]>
  115. * WsdlImporterTest.cs: Update for June CTP changes.
  116. 2006-07-03 Ankit Jain <[email protected]>
  117. * WsdlImporterTest.cs: Use
  118. DataContractSerializerMessageContractImporter instead of
  119. DataContractSerializerMessageContractConverter.
  120. 2006-06-12 Ankit Jain <[email protected]>
  121. * WsdlImporterTest.cs : New.
  122. * dump.xml: New. Required for WsdlImporterTest.cs
  123. 2006-05-29 Atsushi Enomoto <[email protected]>
  124. * TypedMessageConverterTest.cs : new test file.
  125. 2006-04-07 Atsushi Enomoto <[email protected]>
  126. * OperationDescriptionTest.cs : test MessageDescriptions as well.
  127. 2006-04-05 Atsushi Enomoto <[email protected]>
  128. * ContractDescriptionTest.cs : test to reject operation-less contract.
  129. 2006-04-05 Atsushi Enomoto <[email protected]>
  130. * ContractDescriptionTest.cs : moved from Test/S.SM.Dispatcher.
  131. * OperationDescriptionTest.cs : new file.
  132. 2006-03-02 Atsushi Enomoto <[email protected]>
  133. (resumed changelogging)
  134. * ChannelBuildContextTest.cs :
  135. Added tests for null ListenUri arguments.
  136. 2006-02-23 Atsushi Enomoto <[email protected]>
  137. * ChannelBuildContextTest.cs : Feb. CTP API changes - chapter 1.
  138. 2006-01-26 Atsushi Enomoto <[email protected]>
  139. * ChannelBuildContextTest.cs : (ConsumeBindingElements)
  140. Use BindingElements instead of non-implemented WSHttpBinding.
  141. 2005-11-20 Atsushi Enomoto <[email protected]>
  142. * ChannelBuildContext.cs : new file.
  143. 2005-10-26 Atsushi Enomoto <[email protected]>
  144. * TypeLoaderTest.cs : actually this is rather ContractDescription
  145. test, so it is being moved.
  146. 2005-10-24 Atsushi Enomoto <[email protected]>
  147. * TypeLoaderTest.cs : new test.