| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719 |
- 2010-06-17 Atsushi Enomoto <[email protected]>
- * CustomBindingTest.cs : add tests for MessageVersion check on Open().
- 2010-06-15 Atsushi Enomoto <[email protected]>
- * TcpTransportBindingElementTest.cs : add connection tests (imported
- from standalone olive tests), one is disabled for breakage.
- 2010-05-14 Atsushi Enomoto <[email protected]>
- * BindingContextTest.cs : add a couple of tests with related to
- RemainingBindingElements use. Some tests by Andreia Gaita.
- 2010-04-21 Atsushi Enomoto <[email protected]>
- * CustomBindingTest.cs : enable BuildChannelListener test for no-
- transport case. Test CanBuildChannelListener too.
- 2010-04-01 Atsushi Enomoto <[email protected]>
- * TcpTransportBindingElementTest.cs : GetProperty<T>() here too.
- 2010-04-01 Atsushi Enomoto <[email protected]>
- * HttpsTransportBindingElementTest.cs :
- added test for GetProperty<T>().
- 2010-03-29 Atsushi Enomoto <[email protected]>
- * FaultConverterTest.cs : added more TryCreateException() tests.
- 2010-03-29 Atsushi Enomoto <[email protected]>
- * MessageHeaderTest.cs : enable one, add not-working cosmetic one.
- 2010-03-29 Atsushi Enomoto <[email protected]>
- * MessageBufferTest.cs : enable not-working test.
- 2010-03-29 Atsushi Enomoto <[email protected]>
- * MessageFaultTest.cs : enable previous test.
- 2010-03-29 Atsushi Enomoto <[email protected]>
- * FaultConverterTest.cs : enable previous test.
- 2010-03-26 Atsushi Enomoto <[email protected]>
- * FaultConverterTest.cs, MessageFaultTest.cs : add new and not-working
- tests.
- 2010-03-26 Atsushi Enomoto <[email protected]>
- * MessageBufferTest.cs : add test for copy of IsFault value.
- 2010-03-25 Atsushi Enomoto <[email protected]>
- * MessageTest.cs : add another IsFault tests, which exposed some
- issues at client side.
- 2010-01-21 Atsushi Enomoto <[email protected]>
- * SslStreamSecurityBindingElementTest.cs : reduce extra base dep.
- 2010-01-20 Atsushi Enomoto <[email protected]>
- * AddressHeaderTest.cs : add reader and writer tests.
- 2010-01-06 Atsushi Enomoto <[email protected]>
- * BinaryMessageEncodingBindingElementTest.cs : added test for
- connection-based tests for both TCP and HTTP (they give difference:
- see BinaryMessageEncoder.cs change too).
- 2009-12-21 Atsushi Enomoto <[email protected]>
- * MessageFaultTest.cs : add CreateFault test with MessageVersion.None.
- 2009-12-10 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs : added another CopyHeadersFrom() test to
- make sure there is no duplicate.
- 2009-12-10 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs : enable working test and remove old comment.
- 2009-12-10 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs : make sure null can be set as a
- WS-Addressing header when version is None.
- 2009-12-04 Atsushi Enomoto <[email protected]>
- * HttpTransportBindingElementTest.cs : added GetProperty() tests.
- 2009-12-03 Atsushi Enomoto <[email protected]>
- * HttpsTransportBindingElementTest.cs : new test.
- 2009-09-14 Atsushi Enomoto <[email protected]>
- * MessagePropertiesTest.cs : new test.
- 2009-09-02 Atsushi Enomoto <[email protected]>
- * HttpRequestMessagePropertyTest.cs : new test.
- 2009-08-31 Atsushi Enomoto <[email protected]>
- * HttpTransportBindingElementTest.cs : test for URI mismatch case.
- 2009-08-20 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs : added a couple od duplicate tests. Fixed
- non-working test output.
- 2009-08-17 Atsushi Enomoto <[email protected]>
- * MessageTest.cs : added test for State.
- 2009-06-08 Atsushi Enomoto <[email protected]>
- * CommunicationObjectTest.cs : added a couple of close/abort tests
- for state transition and base call check.
- 2009-05-22 Atsushi Enomoto <[email protected]>
- * MessageEncoderTest.cs : test CreateSessionEncoder().
- 2009-05-19 Atsushi Enomoto <[email protected]>
- * MessageFaultTest.cs : added more SOAP 12 fault parser tests.
- * soap-fault.xml, soap-fault-incomplete4.xml : new test files.
- 2009-05-15 Atsushi Enomoto <[email protected]>
- * soap-fault-incomplete.xml : new test file.
- * MessageFaultTest.cs : new test.
- 2009-04-28 Atsushi Enomoto <[email protected]>
- * BinaryMessageEncodingBindingElementTest.cs, binary-message.raw:
- new test files.
- 2009-04-21 Atsushi Enomoto <[email protected]>
- * PeerTransportBindingElementTest.cs : test PeerNode property too.
- 2009-04-20 Atsushi Enomoto <[email protected]>
- * PeerTransportBindingElementTest.cs : new.
- 2009-04-07 Atsushi Enomoto <[email protected]>
- * TcpTransportBindingElementTest.cs : more can-build tests.
- 2008-04-13 Igor Zelmanovich <[email protected]>
- * BindingTest.cs:
- consider fixed API in BindingElementCollection class.
- 2008-02-20 Atsushi Enomoto <[email protected]>
- * TcpTransportBindingElementTest.cs : IDuplexChannel is not supported.
- 2008-02-20 Atsushi Enomoto <[email protected]>
- * NetNamedPipeTransportBindingElementTest.cs : new test.
- 2008-02-20 Atsushi Enomoto <[email protected]>
- * EnvelopeVersionTest.cs : updated to work with .NET 3.0 SP1.
- * TcpTransportBindingElementTest.cs : new test.
- 2008-02-15 Atsushi Enomoto <[email protected]>
- * HttpTransportBindingElementTest.cs : test for BuildChannelListener()
- without listener URIs.
- 2007-08-20 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs : added couple of property settters and
- AddressingVersion.None.
- 2007-07-06 Atsushi Enomoto <[email protected]>
- * MsmqTransportBindingElementTest.cs : modified or removed copied-and-
- commented lines to fit with msmq binding element.
- 2007-07-06 Atsushi Enomoto <[email protected]>
- * MsmqTransportBindingElementTest.cs : new test.
- 2007-04-03 Atsushi Enomoto <[email protected]>
- * SecurityBindingElementTest.cs,
- AsymmetricSecurityBindingElementTest.cs,
- HttpTransportBindingElementTest.cs :
- marked some failing tests (on Orcas) as ignored. Some fixes to
- make sure that open connection things be closed.
- 2007-03-13 Atsushi Enomoto <[email protected]>
- * AsymmetricSecurityBindingElementTest.cs : some tests are NotWorking
- now, as they depend on internal processing order.
- 2007-03-07 Atsushi Enomoto <[email protected]>
- * MessageTest.cs : added IsFault().
- 2007-03-06 Atsushi Enomoto <[email protected]>
- * SecurityBindingElementTest.cs :
- added tests for GetProperty<ISecurityCapabilities>().
- 2007-03-05 Atsushi Enomoto <[email protected]>
- * AsymmetricSecurityBindingElementTest.cs :
- fixed inappropriate test name.
- 2007-03-01 Atsushi Enomoto <[email protected]>
- * SecurityBindingElementTest.cs : some more test for ssl parameters.
- 2007-02-13 Atsushi Enomoto <[email protected]>
- * SecurityBindingElementTest.cs : adding [NotWorking]. It happened to
- raise an expected type of exception at different (and wrong) stage.
- 2007-01-29 Atsushi Enomoto <[email protected]>
- * AsymmetricSecurityBindingElementTest.cs : added notworking
- RejectInclusionModeNever() case.
- 2007-01-11 Atsushi Enomoto <[email protected]>
- * AsymmetricSecurityBindingElementTest.cs, CalcSampleProxy.cs : moved
- sample proxy type to new file.
- * SecurityBindingElementTest.cs : some tests for
- SupportingTokenParameters.
- 2006-12-08 Atsushi Enomoto <[email protected]>
- * InterceptorBindingElement.cs : new utility binding element for
- testing.
- 2006-12-07 Atsushi Enomoto <[email protected]>
- * SecurityBindingElementTest.cs : added duplicate authenticator test.
- 2006-12-06 Atsushi Enomoto <[email protected]>
- * SecurityBindingElementTest.cs,
- SymmetricSecurityBindingElementTest.cs,
- AsymmetricSecurityBindingElementTest.cs :
- added test for SetKeyDerivation().
- 2006-12-04 Atsushi Enomoto <[email protected]>
- * HttpTransportBindingElementTest.cs :
- enable CreateChannelInvalidScheme().
- * MessageHeaderTest.cs :
- enable TestIsMessageVersionSupported() and mark IDs.
- 2006-12-04 Atsushi Enomoto <[email protected]>
- * FaultConverterTest.cs : new test.
- 2006-10-13 Ankit Jain <[email protected]>
- * MessageVersionTest.cs : Add test for MessageVersion.None
- 2006-10-12 Atsushi Enomoto <[email protected]>
- * CustomBindingTest.cs : fixed build. It has broken code which
- recently got reported by improved gmcs.
- 2006-10-06 Atsushi Enomoto <[email protected]>
- * CommunicationObjectTest.cs :
- Some tests on operation at faulted state.
- 2006-10-05 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs : added some tests for duplicate header items.
- The resulting tests are odd though.
- 2006-10-04 Atsushi Enomoto <[email protected]>
- * AsymmetricSecurityBindingElementTest.cs :
- VerifyX509MessageSecurityAtService() is working as a test for async
- support, but makes little sense as asymmetric security test now.
- 2006-09-29 Atsushi Enomoto <[email protected]>
- * AsymmetricSecurityBindingElementTest.cs : added more test for
- listener, though not working yet (e.g. because of async support).
- * SslStreamSecurityBindingElementTest.cs : new file.
- 2006-09-29 Atsushi Enomoto <[email protected]>
- * AsymmetricSecurityBindingElementTest.cs : added test for listener
- whose recipient does not contain symmetric key.
- 2006-09-29 Atsushi Enomoto <[email protected]>
- * BindingTest.cs : fixed a test that became ambiguous.
- 2006-09-28 Atsushi Enomoto <[email protected]>
- * AsymmetricSecurityBindingElementTest.cs : new file.
- 2006-09-28 Atsushi Enomoto <[email protected]>
- * HttpTransportBindingElementTest.cs :
- added CreateChannelInvalidScheme().
- 2006-09-28 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs :
- added test for making sure to create authenticator and thus reject
- UserName parameters to become ProtectionTokenParameters.
- 2006-09-27 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs :
- added some more tests for service DefaultCertificate.
- * MessageBufferTest.cs, MessageHeadersTest.cs,
- EmptyFaultExceptionTest.cs, MessageHeaderTest.cs :
- eliminate console output.
- * UnknownFaultExceptionTest.cs : removed obsolete file.
- 2006-09-22 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs, SecurityBindingElementTest.cs,
- SecurityAssert.cs : removed extra code for each source. From now on,
- test for SecurityBindingElement factory methods will go into
- SecurityBindingElementTest.cs.
- 2006-09-22 Atsushi Enomoto <[email protected]>
- * SecurityBindingElementTest.cs, SecurityAssert.cs : added copies first.
- 2006-09-22 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : added assertion helpers for
- asymmetric binding elements. Actually am going to move them to another
- file.
- 2006-09-20 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : tiny comment cleanup.
- 2006-09-19 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : added test that supplies
- ChannelProtectionRequirements manually. Added some comments.
- 2006-09-17 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : removed some NotWorking.
- * OneWayBindingElementTest.cs : new test.
- 2006-09-17 Atsushi Enomoto <[email protected]>
- * HttpTransportBindingElementTest.cs : make sure to close channels
- so that they don't block other tests.
- * HandlerTransportBindingElement.cs :
- be a bit more descriptive on error.
- 2006-09-17 Atsushi Enomoto <[email protected]>
- * HttpTransportBindingElementTest.cs : enable (async) request test.
- Added test for creating channel without opening the factory.
- 2006-09-17 Atsushi Enomoto <[email protected]>
- * MessageEncoderTest.cs : message version mismatch check.
- 2006-09-12 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : added test for missing
- private key in service certificate.
- * HandlerTransportBindingElement.cs : fix warning.
- 2006-09-08 Atsushi Enomoto <[email protected]>
- * HandlerTransportBindingElement.cs : added IOutputChannel impl.
- * OutputChannelBase.cs : new support file.
- 2006-09-05 Atsushi Enomoto <[email protected]>
- * ChannelFactoryTest.cs : moved to Test/S.SM.
- 2006-09-05 Atsushi Enomoto <[email protected]>
- * ChannelFactoryTest.cs : don't use IRequestChannel as a contract
- type. It makes no sense and we reject it as a contract.
- * HandlerBodyWriter.cs : new helper BodyWriter for tests.
- * MessageTest.cs : added test for null message version argument.
- * BindingTest.cs : added MessageVersion property test.
- 2006-09-05 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : use OneWayBindingElement
- to omit reply check and make some tests meaningful.
- 2006-09-04 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs :
- non-x509 service cert test is not working.
- 2006-09-01 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs, MessageHeaderTest.cs, MessageBufferTest.cs :
- cleaning up NotWorking.
- * TextMessageEncodingBindingElementTest.cs, CustomBindingTest.cs :
- moved some irrelevant tests in former file to latter file.
- 2006-08-31 Atsushi Enomoto <[email protected]>
- * CustomBindingTest.cs, HttpTransportBindingElementTest.cs : added
- test that assures MessageEncodingBindingElement is not mandatory.
- * MessageTest.cs : added concept test that shows ToString() somehow
- allows multi time call.
- * MessageBufferTest.cs : fix wrong expected exception. Added test
- that assures it does not allow multi call to CreateBufferedCopy().
- 2006-08-30 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : added more tests for
- different security settings situations.
- 2006-08-29 Atsushi Enomoto <[email protected]>
- * CustomBindingTest.cs : added EnvelopeVersion.None + security case
- (which should be rejected).
- * HandlerTransportBindingElement.cs :
- removed NotImplementedException in OnClose().
- 2006-08-29 Atsushi Enomoto <[email protected]>
- * MessageTest.cs : added some XmlReader inputs with some headers.
- 2006-08-28 Atsushi Enomoto <[email protected]>
- * BindingContextTest.cs : added test to assure that binding parameter
- collection is nothing to do with GetInnerProperty().
- 2006-08-22 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs :
- some annotations. Added secureconversatin factory method test.
- 2006-08-16 Atsushi Enomoto <[email protected]>
- * DebugBindingElement.cs : new helper for message interception.
- * SymmetricSecurityBindingElementTest.cs : cosmetic debug code.
- 2006-08-14 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : add OpenChannelFactory().
- Removed one NotWorking.
- 2006-08-11 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : somewhat minor renaming.
- 2006-08-10 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : some tests are working now.
- 2006-08-09 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : added tests on
- BuildChannelListener() and reply channels. .NET security binding
- is still weird that it causes infinite loop, which blocks me from
- further implementation...
- * HttpTransportBindingElementTest.cs : replaced sync Request() with
- async methods and it started working under .NET.
- * HandlerTransportBindingElement.cs : several refactoring to support
- listener and reply channel as well.
- 2006-08-08 Atsushi Enomoto <[email protected]>
- * HandlerTransportBindingElement.cs : added listener support.
- * ReplyChannelBase.cs : added, for HandlerTransportBindingElement
- listener support.
- * SymmetricSecurityBindingElementTest.cs : added some tests for request
- processing. Like IssuedSecurityTokenProviderTest, still no
- successful way to create reply...
- 2006-08-07 Atsushi Enomoto <[email protected]>
- * MessageBufferTest.cs : removed some NotWorking.
- 2006-08-03 Atsushi Enomoto <[email protected]>
- * HandlerTransportBindingElement.cs : new utility binding element
- that supports event hander based transport.
- * RequestChannelBase.cs :
- new file. used by above, copied from S.SM.Channels.
- * SymmetricSecurityBindingElementTest.cs :
- added tests for those factory methods in SecurityBindingElement
- that return SymmetricSecurityBindingElement.
- 2006-07-28 Atsushi Enomoto <[email protected]>
- * LocalClientSecuritySettingsTest.cs :
- more cosmetic line: assert IdentityVerifier as not null.
- 2006-07-28 Atsushi Enomoto <[email protected]>
- * LocalClientSecuritySettingsTest.cs : new file.
- * SymmetricSecurityBindingElementTest.cs : added test for
- default LocalClientSettings values.
- 2006-07-21 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : Test that
- - SecurityTokenParameters is null by default.
- - with null SecurityTokenParameters BuildChannelFactory fails.
- 2006-07-20 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs :
- Added (ignored) WriteHeaderContentsAddressingNone().
- * MessageTest.cs : added WriteMessagePOX() (EnvelopeVersion.None).
- 2006-07-20 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs : added null serializer argument tests.
- 2006-07-18 Atsushi Enomoto <[email protected]>
- * MessageHeaderTest.cs : added CreateEndpointAddressTypeHeader(). It
- used to fail since DataContractSerializer..ctor() rejected
- EndpointAddress.
- 2006-07-14 Atsushi Enomoto <[email protected]>
- * MessageBufferTest.cs : Added CreateBufferedCopyConsumesMessage().
- Some are NotWorking right now.
- 2006-07-14 Atsushi Enomoto <[email protected]>
- * MessageBufferTest.cs : Don't use Assert.Equals().
- Make TestSimpleMessageBuffer() assert that every return value of
- CreateBufferedCopy() works for WriteMessage().
- 2006-07-13 Atsushi Enomoto <[email protected]>
- * MessageBufferTest.cs : build fix.
- 2006-07-12 Duncan Mak <[email protected]>
- * MessageBufferTest.cs
- (TestEmptyMessageBuffer, TestSimpleMessageBuffer):
- (TestCreateMessageFromClosedBuffer): New tests.
-
- 2006-07-12 Atsushi Enomoto <[email protected]>
- * HttpTransportBindingElementTest.cs : added connection example, but
- it's somehow not working.
- 2006-07-12 Atsushi Enomoto <[email protected]>
- * FaultExceptionTest.cs : ignore failing TestGetObjectData().
- 2006-07-10 Atsushi Enomoto <[email protected]>
- * SymmetricSecurityBindingElementTest.cs : new test.
- 2006-07-10 Atsushi Enomoto <[email protected]>
- * TransactionFlowBindingElementTest.cs : new test.
- 2006-07-06 Atsushi Enomoto <[email protected]>
- * MessageBufferTest.cs, MessageHeadersTest.cs, MessageTest.cs,
- MessageEncodingBindingElementTest.cs,
- TextMessageEncodingBindingElementTest.cs :
- June CTP fixes. MessageFault.DefaultAction vanished.
- Exception type changes. Duplicate message encoding binding element
- now causes (different) exception.
- 2006-07-05 Atsushi Enomoto <[email protected]>
- * MessageTest.cs :
- Replaced vanished CreateMessage() with remaining one.
- 2006-07-05 Atsushi Enomoto <[email protected]>
- * HttpTransportBindingElementTest.cs, CustomBindingTest.cs :
- Fixed tests based on run-test-ondotnet results.
- 2006-07-05 Atsushi Enomoto <[email protected]>
- * CommunicationObjectTest.cs, ChannelFactoryTest.cs :
- June CTP requires a bunch of extra stuff.
- 2006-07-05 Atsushi Enomoto <[email protected]>
- * BindingContextTest.cs :
- Now listenUri parameters could be null.
- Split TestCtorListenUriRelativeAddressNull() into two tests, one is
- for rejecting duplicate message encoding binding element (in June
- CTP it is rejected now).
- 2006-07-05 Atsushi Enomoto <[email protected]>
- * BindingContextTest.cs, MessageEncoderTest.cs,
- MessageEncodingBindingElementTest.cs,
- TextMessageEncodingBindingElementTest.cs :
- reflect June CTP updates.
- 2006-06-20 Atsushi Enomoto <[email protected]>
- * MessageTest.cs : added test that assures null action is allowed.
- 2006-06-20 Atsushi Enomoto <[email protected]>
- * ChannelFactoryTest.cs : Test that only interface can be the Type
- argument in ChannelFactory<T>#.ctor(Type).
- 2006-06-09 Atsushi Enomoto <[email protected]>
- * MessageTest.cs : Added CreateSimpleNonPrimitive().
- 2006-05-29 Atsushi Enomoto <[email protected]>
- * FaultExceptionTest.cs : fix tests for beta2. Ignore English-only
- test.
- 2006-04-06 Atsushi Enomoto <[email protected]>
- * MessageEncoderTest.cs : test for text binding with Soap11.
- * MessageTest.cs : more create/write tests. The serialization part
- could be shared.
- 2006-04-06 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs : one more removal of NotWorking.
- * MessageTest.cs : added fault message creation and write test.
- 2006-03-16 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs : removed some NotWorkings.
- * MessageHeaderTest.cs : uncommented, making several fixes.
- 2006-03-15 Atsushi Enomoto <[email protected]>
- * TextMessageEncodingBindingElementTest.cs :
- added trivial CanBuildChannelFactory test.
- 2006-03-14 Atsushi Enomoto <[email protected]>
- * MessageTest.cs : test Action header in CreateFromXmlReader().
- 2006-03-13 Atsushi Enomoto <[email protected]>
- * MessageTest.cs : added another CreateMessage(XmlReader,...) test.
- 2006-03-10 Atsushi Enomoto <[email protected]>
- * MessageTest.cs : added test for Message.CreateMessage(version,
- xmlreader,int) and GetReaderAtBodyContents() etc.
- 2006-03-08 Atsushi Enomoto <[email protected]>
- * MessageTest.cs : now the test is working, except for
- UnderstoodHeaders.
- * MessageHeadersTest.cs : added GetReaderAtHeader() tests and so on.
- 2006-03-08 Atsushi Enomoto <[email protected]>
- * MessageTest.cs MessageEncoderTest.cs : new tests.
- * MessageHeadersTest.cs : some tests are working now. Added some more
- tests.
- 2006-03-03 Atsushi Enomoto <[email protected]>
- * FaultExceptionTest.cs :
- Don't test English-specific exception message.
- Removed AreEqual() .Don't hide actual cause of assertion failure.
- 2006-03-03 Atsushi Enomoto <[email protected]>
- * MessageEncodingBindingElement.cs : with Feb. CTP we can define our
- own MessageEncodingBindingElement, so added more tests for such
- custom binding element.
- 2006-03-02 Atsushi Enomoto <[email protected]>
- * AddressHeaderTest.cs : marked EqualsTest() which got to not work
- in Feb. CTP.
- * ChannelFactoryTest.cs : null type argument ctor() does not
- exist anymore.
- 2006-03-02 Atsushi Enomoto <[email protected]>
- * MessageHeadersTest.cs
- AddressingVersionTest.cs
- FaultExceptionTest.cs : updated tests to work fine with Feb. CTP.
- 2005-10-26 Atsushi Enomoto <[email protected]>
- * CommunicationObjectTest.cs : some State tests.
- 2005-10-26 Atsushi Enomoto <[email protected]>
- * CommunicationObjectTest.cs : some simple Open/Close tests.
- 2005-10-23 Atsushi Enomoto <[email protected]>
- * CommunicationObjectTest.cs : new file (testing run-test).
|