ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  1. 2010-05-14 Atsushi Enomoto <[email protected]>
  2. * BindingContextTest.cs : add a couple of tests with related to
  3. RemainingBindingElements use. Some tests by Andreia Gaita.
  4. 2010-04-21 Atsushi Enomoto <[email protected]>
  5. * CustomBindingTest.cs : enable BuildChannelListener test for no-
  6. transport case. Test CanBuildChannelListener too.
  7. 2010-04-01 Atsushi Enomoto <[email protected]>
  8. * TcpTransportBindingElementTest.cs : GetProperty<T>() here too.
  9. 2010-04-01 Atsushi Enomoto <[email protected]>
  10. * HttpsTransportBindingElementTest.cs :
  11. added test for GetProperty<T>().
  12. 2010-03-29 Atsushi Enomoto <[email protected]>
  13. * FaultConverterTest.cs : added more TryCreateException() tests.
  14. 2010-03-29 Atsushi Enomoto <[email protected]>
  15. * MessageHeaderTest.cs : enable one, add not-working cosmetic one.
  16. 2010-03-29 Atsushi Enomoto <[email protected]>
  17. * MessageBufferTest.cs : enable not-working test.
  18. 2010-03-29 Atsushi Enomoto <[email protected]>
  19. * MessageFaultTest.cs : enable previous test.
  20. 2010-03-29 Atsushi Enomoto <[email protected]>
  21. * FaultConverterTest.cs : enable previous test.
  22. 2010-03-26 Atsushi Enomoto <[email protected]>
  23. * FaultConverterTest.cs, MessageFaultTest.cs : add new and not-working
  24. tests.
  25. 2010-03-26 Atsushi Enomoto <[email protected]>
  26. * MessageBufferTest.cs : add test for copy of IsFault value.
  27. 2010-03-25 Atsushi Enomoto <[email protected]>
  28. * MessageTest.cs : add another IsFault tests, which exposed some
  29. issues at client side.
  30. 2010-01-21 Atsushi Enomoto <[email protected]>
  31. * SslStreamSecurityBindingElementTest.cs : reduce extra base dep.
  32. 2010-01-20 Atsushi Enomoto <[email protected]>
  33. * AddressHeaderTest.cs : add reader and writer tests.
  34. 2010-01-06 Atsushi Enomoto <[email protected]>
  35. * BinaryMessageEncodingBindingElementTest.cs : added test for
  36. connection-based tests for both TCP and HTTP (they give difference:
  37. see BinaryMessageEncoder.cs change too).
  38. 2009-12-21 Atsushi Enomoto <[email protected]>
  39. * MessageFaultTest.cs : add CreateFault test with MessageVersion.None.
  40. 2009-12-10 Atsushi Enomoto <[email protected]>
  41. * MessageHeadersTest.cs : added another CopyHeadersFrom() test to
  42. make sure there is no duplicate.
  43. 2009-12-10 Atsushi Enomoto <[email protected]>
  44. * MessageHeadersTest.cs : enable working test and remove old comment.
  45. 2009-12-10 Atsushi Enomoto <[email protected]>
  46. * MessageHeadersTest.cs : make sure null can be set as a
  47. WS-Addressing header when version is None.
  48. 2009-12-04 Atsushi Enomoto <[email protected]>
  49. * HttpTransportBindingElementTest.cs : added GetProperty() tests.
  50. 2009-12-03 Atsushi Enomoto <[email protected]>
  51. * HttpsTransportBindingElementTest.cs : new test.
  52. 2009-09-14 Atsushi Enomoto <[email protected]>
  53. * MessagePropertiesTest.cs : new test.
  54. 2009-09-02 Atsushi Enomoto <[email protected]>
  55. * HttpRequestMessagePropertyTest.cs : new test.
  56. 2009-08-31 Atsushi Enomoto <[email protected]>
  57. * HttpTransportBindingElementTest.cs : test for URI mismatch case.
  58. 2009-08-20 Atsushi Enomoto <[email protected]>
  59. * MessageHeadersTest.cs : added a couple od duplicate tests. Fixed
  60. non-working test output.
  61. 2009-08-17 Atsushi Enomoto <[email protected]>
  62. * MessageTest.cs : added test for State.
  63. 2009-06-08 Atsushi Enomoto <[email protected]>
  64. * CommunicationObjectTest.cs : added a couple of close/abort tests
  65. for state transition and base call check.
  66. 2009-05-22 Atsushi Enomoto <[email protected]>
  67. * MessageEncoderTest.cs : test CreateSessionEncoder().
  68. 2009-05-19 Atsushi Enomoto <[email protected]>
  69. * MessageFaultTest.cs : added more SOAP 12 fault parser tests.
  70. * soap-fault.xml, soap-fault-incomplete4.xml : new test files.
  71. 2009-05-15 Atsushi Enomoto <[email protected]>
  72. * soap-fault-incomplete.xml : new test file.
  73. * MessageFaultTest.cs : new test.
  74. 2009-04-28 Atsushi Enomoto <[email protected]>
  75. * BinaryMessageEncodingBindingElementTest.cs, binary-message.raw:
  76. new test files.
  77. 2009-04-21 Atsushi Enomoto <[email protected]>
  78. * PeerTransportBindingElementTest.cs : test PeerNode property too.
  79. 2009-04-20 Atsushi Enomoto <[email protected]>
  80. * PeerTransportBindingElementTest.cs : new.
  81. 2009-04-07 Atsushi Enomoto <[email protected]>
  82. * TcpTransportBindingElementTest.cs : more can-build tests.
  83. 2008-04-13 Igor Zelmanovich <[email protected]>
  84. * BindingTest.cs:
  85. consider fixed API in BindingElementCollection class.
  86. 2008-02-20 Atsushi Enomoto <[email protected]>
  87. * TcpTransportBindingElementTest.cs : IDuplexChannel is not supported.
  88. 2008-02-20 Atsushi Enomoto <[email protected]>
  89. * NetNamedPipeTransportBindingElementTest.cs : new test.
  90. 2008-02-20 Atsushi Enomoto <[email protected]>
  91. * EnvelopeVersionTest.cs : updated to work with .NET 3.0 SP1.
  92. * TcpTransportBindingElementTest.cs : new test.
  93. 2008-02-15 Atsushi Enomoto <[email protected]>
  94. * HttpTransportBindingElementTest.cs : test for BuildChannelListener()
  95. without listener URIs.
  96. 2007-08-20 Atsushi Enomoto <[email protected]>
  97. * MessageHeadersTest.cs : added couple of property settters and
  98. AddressingVersion.None.
  99. 2007-07-06 Atsushi Enomoto <[email protected]>
  100. * MsmqTransportBindingElementTest.cs : modified or removed copied-and-
  101. commented lines to fit with msmq binding element.
  102. 2007-07-06 Atsushi Enomoto <[email protected]>
  103. * MsmqTransportBindingElementTest.cs : new test.
  104. 2007-04-03 Atsushi Enomoto <[email protected]>
  105. * SecurityBindingElementTest.cs,
  106. AsymmetricSecurityBindingElementTest.cs,
  107. HttpTransportBindingElementTest.cs :
  108. marked some failing tests (on Orcas) as ignored. Some fixes to
  109. make sure that open connection things be closed.
  110. 2007-03-13 Atsushi Enomoto <[email protected]>
  111. * AsymmetricSecurityBindingElementTest.cs : some tests are NotWorking
  112. now, as they depend on internal processing order.
  113. 2007-03-07 Atsushi Enomoto <[email protected]>
  114. * MessageTest.cs : added IsFault().
  115. 2007-03-06 Atsushi Enomoto <[email protected]>
  116. * SecurityBindingElementTest.cs :
  117. added tests for GetProperty<ISecurityCapabilities>().
  118. 2007-03-05 Atsushi Enomoto <[email protected]>
  119. * AsymmetricSecurityBindingElementTest.cs :
  120. fixed inappropriate test name.
  121. 2007-03-01 Atsushi Enomoto <[email protected]>
  122. * SecurityBindingElementTest.cs : some more test for ssl parameters.
  123. 2007-02-13 Atsushi Enomoto <[email protected]>
  124. * SecurityBindingElementTest.cs : adding [NotWorking]. It happened to
  125. raise an expected type of exception at different (and wrong) stage.
  126. 2007-01-29 Atsushi Enomoto <[email protected]>
  127. * AsymmetricSecurityBindingElementTest.cs : added notworking
  128. RejectInclusionModeNever() case.
  129. 2007-01-11 Atsushi Enomoto <[email protected]>
  130. * AsymmetricSecurityBindingElementTest.cs, CalcSampleProxy.cs : moved
  131. sample proxy type to new file.
  132. * SecurityBindingElementTest.cs : some tests for
  133. SupportingTokenParameters.
  134. 2006-12-08 Atsushi Enomoto <[email protected]>
  135. * InterceptorBindingElement.cs : new utility binding element for
  136. testing.
  137. 2006-12-07 Atsushi Enomoto <[email protected]>
  138. * SecurityBindingElementTest.cs : added duplicate authenticator test.
  139. 2006-12-06 Atsushi Enomoto <[email protected]>
  140. * SecurityBindingElementTest.cs,
  141. SymmetricSecurityBindingElementTest.cs,
  142. AsymmetricSecurityBindingElementTest.cs :
  143. added test for SetKeyDerivation().
  144. 2006-12-04 Atsushi Enomoto <[email protected]>
  145. * HttpTransportBindingElementTest.cs :
  146. enable CreateChannelInvalidScheme().
  147. * MessageHeaderTest.cs :
  148. enable TestIsMessageVersionSupported() and mark IDs.
  149. 2006-12-04 Atsushi Enomoto <[email protected]>
  150. * FaultConverterTest.cs : new test.
  151. 2006-10-13 Ankit Jain <[email protected]>
  152. * MessageVersionTest.cs : Add test for MessageVersion.None
  153. 2006-10-12 Atsushi Enomoto <[email protected]>
  154. * CustomBindingTest.cs : fixed build. It has broken code which
  155. recently got reported by improved gmcs.
  156. 2006-10-06 Atsushi Enomoto <[email protected]>
  157. * CommunicationObjectTest.cs :
  158. Some tests on operation at faulted state.
  159. 2006-10-05 Atsushi Enomoto <[email protected]>
  160. * MessageHeadersTest.cs : added some tests for duplicate header items.
  161. The resulting tests are odd though.
  162. 2006-10-04 Atsushi Enomoto <[email protected]>
  163. * AsymmetricSecurityBindingElementTest.cs :
  164. VerifyX509MessageSecurityAtService() is working as a test for async
  165. support, but makes little sense as asymmetric security test now.
  166. 2006-09-29 Atsushi Enomoto <[email protected]>
  167. * AsymmetricSecurityBindingElementTest.cs : added more test for
  168. listener, though not working yet (e.g. because of async support).
  169. * SslStreamSecurityBindingElementTest.cs : new file.
  170. 2006-09-29 Atsushi Enomoto <[email protected]>
  171. * AsymmetricSecurityBindingElementTest.cs : added test for listener
  172. whose recipient does not contain symmetric key.
  173. 2006-09-29 Atsushi Enomoto <[email protected]>
  174. * BindingTest.cs : fixed a test that became ambiguous.
  175. 2006-09-28 Atsushi Enomoto <[email protected]>
  176. * AsymmetricSecurityBindingElementTest.cs : new file.
  177. 2006-09-28 Atsushi Enomoto <[email protected]>
  178. * HttpTransportBindingElementTest.cs :
  179. added CreateChannelInvalidScheme().
  180. 2006-09-28 Atsushi Enomoto <[email protected]>
  181. * SymmetricSecurityBindingElementTest.cs :
  182. added test for making sure to create authenticator and thus reject
  183. UserName parameters to become ProtectionTokenParameters.
  184. 2006-09-27 Atsushi Enomoto <[email protected]>
  185. * SymmetricSecurityBindingElementTest.cs :
  186. added some more tests for service DefaultCertificate.
  187. * MessageBufferTest.cs, MessageHeadersTest.cs,
  188. EmptyFaultExceptionTest.cs, MessageHeaderTest.cs :
  189. eliminate console output.
  190. * UnknownFaultExceptionTest.cs : removed obsolete file.
  191. 2006-09-22 Atsushi Enomoto <[email protected]>
  192. * SymmetricSecurityBindingElementTest.cs, SecurityBindingElementTest.cs,
  193. SecurityAssert.cs : removed extra code for each source. From now on,
  194. test for SecurityBindingElement factory methods will go into
  195. SecurityBindingElementTest.cs.
  196. 2006-09-22 Atsushi Enomoto <[email protected]>
  197. * SecurityBindingElementTest.cs, SecurityAssert.cs : added copies first.
  198. 2006-09-22 Atsushi Enomoto <[email protected]>
  199. * SymmetricSecurityBindingElementTest.cs : added assertion helpers for
  200. asymmetric binding elements. Actually am going to move them to another
  201. file.
  202. 2006-09-20 Atsushi Enomoto <[email protected]>
  203. * SymmetricSecurityBindingElementTest.cs : tiny comment cleanup.
  204. 2006-09-19 Atsushi Enomoto <[email protected]>
  205. * SymmetricSecurityBindingElementTest.cs : added test that supplies
  206. ChannelProtectionRequirements manually. Added some comments.
  207. 2006-09-17 Atsushi Enomoto <[email protected]>
  208. * SymmetricSecurityBindingElementTest.cs : removed some NotWorking.
  209. * OneWayBindingElementTest.cs : new test.
  210. 2006-09-17 Atsushi Enomoto <[email protected]>
  211. * HttpTransportBindingElementTest.cs : make sure to close channels
  212. so that they don't block other tests.
  213. * HandlerTransportBindingElement.cs :
  214. be a bit more descriptive on error.
  215. 2006-09-17 Atsushi Enomoto <[email protected]>
  216. * HttpTransportBindingElementTest.cs : enable (async) request test.
  217. Added test for creating channel without opening the factory.
  218. 2006-09-17 Atsushi Enomoto <[email protected]>
  219. * MessageEncoderTest.cs : message version mismatch check.
  220. 2006-09-12 Atsushi Enomoto <[email protected]>
  221. * SymmetricSecurityBindingElementTest.cs : added test for missing
  222. private key in service certificate.
  223. * HandlerTransportBindingElement.cs : fix warning.
  224. 2006-09-08 Atsushi Enomoto <[email protected]>
  225. * HandlerTransportBindingElement.cs : added IOutputChannel impl.
  226. * OutputChannelBase.cs : new support file.
  227. 2006-09-05 Atsushi Enomoto <[email protected]>
  228. * ChannelFactoryTest.cs : moved to Test/S.SM.
  229. 2006-09-05 Atsushi Enomoto <[email protected]>
  230. * ChannelFactoryTest.cs : don't use IRequestChannel as a contract
  231. type. It makes no sense and we reject it as a contract.
  232. * HandlerBodyWriter.cs : new helper BodyWriter for tests.
  233. * MessageTest.cs : added test for null message version argument.
  234. * BindingTest.cs : added MessageVersion property test.
  235. 2006-09-05 Atsushi Enomoto <[email protected]>
  236. * SymmetricSecurityBindingElementTest.cs : use OneWayBindingElement
  237. to omit reply check and make some tests meaningful.
  238. 2006-09-04 Atsushi Enomoto <[email protected]>
  239. * SymmetricSecurityBindingElementTest.cs :
  240. non-x509 service cert test is not working.
  241. 2006-09-01 Atsushi Enomoto <[email protected]>
  242. * MessageHeadersTest.cs, MessageHeaderTest.cs, MessageBufferTest.cs :
  243. cleaning up NotWorking.
  244. * TextMessageEncodingBindingElementTest.cs, CustomBindingTest.cs :
  245. moved some irrelevant tests in former file to latter file.
  246. 2006-08-31 Atsushi Enomoto <[email protected]>
  247. * CustomBindingTest.cs, HttpTransportBindingElementTest.cs : added
  248. test that assures MessageEncodingBindingElement is not mandatory.
  249. * MessageTest.cs : added concept test that shows ToString() somehow
  250. allows multi time call.
  251. * MessageBufferTest.cs : fix wrong expected exception. Added test
  252. that assures it does not allow multi call to CreateBufferedCopy().
  253. 2006-08-30 Atsushi Enomoto <[email protected]>
  254. * SymmetricSecurityBindingElementTest.cs : added more tests for
  255. different security settings situations.
  256. 2006-08-29 Atsushi Enomoto <[email protected]>
  257. * CustomBindingTest.cs : added EnvelopeVersion.None + security case
  258. (which should be rejected).
  259. * HandlerTransportBindingElement.cs :
  260. removed NotImplementedException in OnClose().
  261. 2006-08-29 Atsushi Enomoto <[email protected]>
  262. * MessageTest.cs : added some XmlReader inputs with some headers.
  263. 2006-08-28 Atsushi Enomoto <[email protected]>
  264. * BindingContextTest.cs : added test to assure that binding parameter
  265. collection is nothing to do with GetInnerProperty().
  266. 2006-08-22 Atsushi Enomoto <[email protected]>
  267. * SymmetricSecurityBindingElementTest.cs :
  268. some annotations. Added secureconversatin factory method test.
  269. 2006-08-16 Atsushi Enomoto <[email protected]>
  270. * DebugBindingElement.cs : new helper for message interception.
  271. * SymmetricSecurityBindingElementTest.cs : cosmetic debug code.
  272. 2006-08-14 Atsushi Enomoto <[email protected]>
  273. * SymmetricSecurityBindingElementTest.cs : add OpenChannelFactory().
  274. Removed one NotWorking.
  275. 2006-08-11 Atsushi Enomoto <[email protected]>
  276. * SymmetricSecurityBindingElementTest.cs : somewhat minor renaming.
  277. 2006-08-10 Atsushi Enomoto <[email protected]>
  278. * SymmetricSecurityBindingElementTest.cs : some tests are working now.
  279. 2006-08-09 Atsushi Enomoto <[email protected]>
  280. * SymmetricSecurityBindingElementTest.cs : added tests on
  281. BuildChannelListener() and reply channels. .NET security binding
  282. is still weird that it causes infinite loop, which blocks me from
  283. further implementation...
  284. * HttpTransportBindingElementTest.cs : replaced sync Request() with
  285. async methods and it started working under .NET.
  286. * HandlerTransportBindingElement.cs : several refactoring to support
  287. listener and reply channel as well.
  288. 2006-08-08 Atsushi Enomoto <[email protected]>
  289. * HandlerTransportBindingElement.cs : added listener support.
  290. * ReplyChannelBase.cs : added, for HandlerTransportBindingElement
  291. listener support.
  292. * SymmetricSecurityBindingElementTest.cs : added some tests for request
  293. processing. Like IssuedSecurityTokenProviderTest, still no
  294. successful way to create reply...
  295. 2006-08-07 Atsushi Enomoto <[email protected]>
  296. * MessageBufferTest.cs : removed some NotWorking.
  297. 2006-08-03 Atsushi Enomoto <[email protected]>
  298. * HandlerTransportBindingElement.cs : new utility binding element
  299. that supports event hander based transport.
  300. * RequestChannelBase.cs :
  301. new file. used by above, copied from S.SM.Channels.
  302. * SymmetricSecurityBindingElementTest.cs :
  303. added tests for those factory methods in SecurityBindingElement
  304. that return SymmetricSecurityBindingElement.
  305. 2006-07-28 Atsushi Enomoto <[email protected]>
  306. * LocalClientSecuritySettingsTest.cs :
  307. more cosmetic line: assert IdentityVerifier as not null.
  308. 2006-07-28 Atsushi Enomoto <[email protected]>
  309. * LocalClientSecuritySettingsTest.cs : new file.
  310. * SymmetricSecurityBindingElementTest.cs : added test for
  311. default LocalClientSettings values.
  312. 2006-07-21 Atsushi Enomoto <[email protected]>
  313. * SymmetricSecurityBindingElementTest.cs : Test that
  314. - SecurityTokenParameters is null by default.
  315. - with null SecurityTokenParameters BuildChannelFactory fails.
  316. 2006-07-20 Atsushi Enomoto <[email protected]>
  317. * MessageHeadersTest.cs :
  318. Added (ignored) WriteHeaderContentsAddressingNone().
  319. * MessageTest.cs : added WriteMessagePOX() (EnvelopeVersion.None).
  320. 2006-07-20 Atsushi Enomoto <[email protected]>
  321. * MessageHeadersTest.cs : added null serializer argument tests.
  322. 2006-07-18 Atsushi Enomoto <[email protected]>
  323. * MessageHeaderTest.cs : added CreateEndpointAddressTypeHeader(). It
  324. used to fail since DataContractSerializer..ctor() rejected
  325. EndpointAddress.
  326. 2006-07-14 Atsushi Enomoto <[email protected]>
  327. * MessageBufferTest.cs : Added CreateBufferedCopyConsumesMessage().
  328. Some are NotWorking right now.
  329. 2006-07-14 Atsushi Enomoto <[email protected]>
  330. * MessageBufferTest.cs : Don't use Assert.Equals().
  331. Make TestSimpleMessageBuffer() assert that every return value of
  332. CreateBufferedCopy() works for WriteMessage().
  333. 2006-07-13 Atsushi Enomoto <[email protected]>
  334. * MessageBufferTest.cs : build fix.
  335. 2006-07-12 Duncan Mak <[email protected]>
  336. * MessageBufferTest.cs
  337. (TestEmptyMessageBuffer, TestSimpleMessageBuffer):
  338. (TestCreateMessageFromClosedBuffer): New tests.
  339. 2006-07-12 Atsushi Enomoto <[email protected]>
  340. * HttpTransportBindingElementTest.cs : added connection example, but
  341. it's somehow not working.
  342. 2006-07-12 Atsushi Enomoto <[email protected]>
  343. * FaultExceptionTest.cs : ignore failing TestGetObjectData().
  344. 2006-07-10 Atsushi Enomoto <[email protected]>
  345. * SymmetricSecurityBindingElementTest.cs : new test.
  346. 2006-07-10 Atsushi Enomoto <[email protected]>
  347. * TransactionFlowBindingElementTest.cs : new test.
  348. 2006-07-06 Atsushi Enomoto <[email protected]>
  349. * MessageBufferTest.cs, MessageHeadersTest.cs, MessageTest.cs,
  350. MessageEncodingBindingElementTest.cs,
  351. TextMessageEncodingBindingElementTest.cs :
  352. June CTP fixes. MessageFault.DefaultAction vanished.
  353. Exception type changes. Duplicate message encoding binding element
  354. now causes (different) exception.
  355. 2006-07-05 Atsushi Enomoto <[email protected]>
  356. * MessageTest.cs :
  357. Replaced vanished CreateMessage() with remaining one.
  358. 2006-07-05 Atsushi Enomoto <[email protected]>
  359. * HttpTransportBindingElementTest.cs, CustomBindingTest.cs :
  360. Fixed tests based on run-test-ondotnet results.
  361. 2006-07-05 Atsushi Enomoto <[email protected]>
  362. * CommunicationObjectTest.cs, ChannelFactoryTest.cs :
  363. June CTP requires a bunch of extra stuff.
  364. 2006-07-05 Atsushi Enomoto <[email protected]>
  365. * BindingContextTest.cs :
  366. Now listenUri parameters could be null.
  367. Split TestCtorListenUriRelativeAddressNull() into two tests, one is
  368. for rejecting duplicate message encoding binding element (in June
  369. CTP it is rejected now).
  370. 2006-07-05 Atsushi Enomoto <[email protected]>
  371. * BindingContextTest.cs, MessageEncoderTest.cs,
  372. MessageEncodingBindingElementTest.cs,
  373. TextMessageEncodingBindingElementTest.cs :
  374. reflect June CTP updates.
  375. 2006-06-20 Atsushi Enomoto <[email protected]>
  376. * MessageTest.cs : added test that assures null action is allowed.
  377. 2006-06-20 Atsushi Enomoto <[email protected]>
  378. * ChannelFactoryTest.cs : Test that only interface can be the Type
  379. argument in ChannelFactory<T>#.ctor(Type).
  380. 2006-06-09 Atsushi Enomoto <[email protected]>
  381. * MessageTest.cs : Added CreateSimpleNonPrimitive().
  382. 2006-05-29 Atsushi Enomoto <[email protected]>
  383. * FaultExceptionTest.cs : fix tests for beta2. Ignore English-only
  384. test.
  385. 2006-04-06 Atsushi Enomoto <[email protected]>
  386. * MessageEncoderTest.cs : test for text binding with Soap11.
  387. * MessageTest.cs : more create/write tests. The serialization part
  388. could be shared.
  389. 2006-04-06 Atsushi Enomoto <[email protected]>
  390. * MessageHeadersTest.cs : one more removal of NotWorking.
  391. * MessageTest.cs : added fault message creation and write test.
  392. 2006-03-16 Atsushi Enomoto <[email protected]>
  393. * MessageHeadersTest.cs : removed some NotWorkings.
  394. * MessageHeaderTest.cs : uncommented, making several fixes.
  395. 2006-03-15 Atsushi Enomoto <[email protected]>
  396. * TextMessageEncodingBindingElementTest.cs :
  397. added trivial CanBuildChannelFactory test.
  398. 2006-03-14 Atsushi Enomoto <[email protected]>
  399. * MessageTest.cs : test Action header in CreateFromXmlReader().
  400. 2006-03-13 Atsushi Enomoto <[email protected]>
  401. * MessageTest.cs : added another CreateMessage(XmlReader,...) test.
  402. 2006-03-10 Atsushi Enomoto <[email protected]>
  403. * MessageTest.cs : added test for Message.CreateMessage(version,
  404. xmlreader,int) and GetReaderAtBodyContents() etc.
  405. 2006-03-08 Atsushi Enomoto <[email protected]>
  406. * MessageTest.cs : now the test is working, except for
  407. UnderstoodHeaders.
  408. * MessageHeadersTest.cs : added GetReaderAtHeader() tests and so on.
  409. 2006-03-08 Atsushi Enomoto <[email protected]>
  410. * MessageTest.cs MessageEncoderTest.cs : new tests.
  411. * MessageHeadersTest.cs : some tests are working now. Added some more
  412. tests.
  413. 2006-03-03 Atsushi Enomoto <[email protected]>
  414. * FaultExceptionTest.cs :
  415. Don't test English-specific exception message.
  416. Removed AreEqual() .Don't hide actual cause of assertion failure.
  417. 2006-03-03 Atsushi Enomoto <[email protected]>
  418. * MessageEncodingBindingElement.cs : with Feb. CTP we can define our
  419. own MessageEncodingBindingElement, so added more tests for such
  420. custom binding element.
  421. 2006-03-02 Atsushi Enomoto <[email protected]>
  422. * AddressHeaderTest.cs : marked EqualsTest() which got to not work
  423. in Feb. CTP.
  424. * ChannelFactoryTest.cs : null type argument ctor() does not
  425. exist anymore.
  426. 2006-03-02 Atsushi Enomoto <[email protected]>
  427. * MessageHeadersTest.cs
  428. AddressingVersionTest.cs
  429. FaultExceptionTest.cs : updated tests to work fine with Feb. CTP.
  430. 2005-10-26 Atsushi Enomoto <[email protected]>
  431. * CommunicationObjectTest.cs : some State tests.
  432. 2005-10-26 Atsushi Enomoto <[email protected]>
  433. * CommunicationObjectTest.cs : some simple Open/Close tests.
  434. 2005-10-23 Atsushi Enomoto <[email protected]>
  435. * CommunicationObjectTest.cs : new file (testing run-test).