ChangeLog 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. 2005-10-16 Robert Jordan <[email protected]>
  2. * IpcCalls.cs: Added.
  3. 2005-04-27 Lluis Sanchez Gual <[email protected]>
  4. * RemotingServicesTest.cs: Fix warning.
  5. * ContextsTest.cs: Removed unneeded exception catch.
  6. Changed the order in which GetEnvoySink is called. I think
  7. this is a safe chenge, since it is not defined where the
  8. call to GetEnvoySink should be made.
  9. 2005-02-16 Lluis Sanchez Gual <[email protected]>
  10. * HttpCalls.cs, TcpCalls.cs: Don't use a hardcoded port number for the
  11. test channels, take any free port.
  12. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  13. * HttpCalls.cs: Use a different port.
  14. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  15. * BaseCalls.cs: Removed useless try/catch.
  16. 2004-09-27 Lluis Sanchez Gual <[email protected]>
  17. * ContextsTest.cs: Fixed test sequence.
  18. * RemotingServicesTest.cs: Minor fix.
  19. * ServerObject.cs: Added check for transparent proxy in all CBO methods.
  20. 2004-07-02 Lluis Sanchez Gual <[email protected]>
  21. * ActivationTests.cs: Fixed and enhanced tests.
  22. * RemotingServicesTest.cs: Added.
  23. 2004-06-23 Lluis Sanchez Gual <[email protected]>
  24. * ActivationTests.cs: New tests.
  25. * BaseCalls.cs, CallSeq.cs: Use Assert instead of the deprecated Assertion.
  26. 2004-05-03 Lluis Sanchez Gual <[email protected]>
  27. * AsyncCalls.cs, BaseCalls.cs, DelegateCalls.cs, ReflectionCalls.cs,
  28. ServerObject.cs, SyncCalls.cs: Improved PrimitiveParamsInOut test case.
  29. 2004-02-23 Lluis Sanchez Gual <[email protected]>
  30. * AsyncCalls.cs, BaseCalls.cs, CallSeq.cs, ContextHookAttribute.cs,
  31. ContextsTest.cs, CrossDomainCalls.cs, DelegateCalls.cs, HttpCalls.cs,
  32. ReflectionCalls.cs, ServerObject.cs, SyncCalls.cs, TcpCalls.cs:
  33. Shortened namespace name.
  34. 2003-11-11 Lluis Sanchez Gual <[email protected]>
  35. * BaseCalls.cs: Little fix.
  36. * ContextsTest.cs: Unregister dynamic properties even if there is an exception.
  37. * CrossDomainCalls.cs: New test for the cross-app domain channel.
  38. 2003-09-01 Nick Drochak <[email protected]>
  39. * AsyncCalls.cs: Fix Build breaker on .NET 1.1.
  40. 2003-08-22 Lluis Sanchez Gual <[email protected]>
  41. * BaseCalls.cs: Create 3 test remote objects, one for each kind of access,
  42. to avoid reuse of client proxies.
  43. * CallSeq.cs: Now, "domain ID" is set manually.
  44. * ContextsTest.cs: Added initialization of common domain id. Other small fixes.
  45. * ReflectionCalls.cs: Get the method for the invoke for the correct type.
  46. GetType() for a proxy to interface always return MarshalByRefObject.
  47. * TcpCalls.cs, HttpCalls.cs: Added delegate tests.
  48. * DelegateCalls.cs: New test suite for calls using delegates.
  49. 2003-08-20 Lluis Sanchez Gual <[email protected]>
  50. * AsyncCalls.cs, BaseCalls.cs, HttpCalls.cs, ReflectionCalls.cs, SyncCalls.cs,
  51. TcpCalls.cs: new test suite for remoting. It tests sync calls, async calls
  52. and reflection calls using tcp and http channels.
  53. * CallSeq.cs, ContextHookAttribute.cs: Add methods for getting a context and
  54. domain ids that are the same between tests runs.
  55. * ContextsTest.cs: unregister channel on test shutdown.
  56. 2003-07-23 Lluis Sanchez Gual <[email protected]>
  57. * ContextsTest.cs, CallSeq.cs, ContextHookAttribute.cs, ServerObject.cs: Added.