ChangeLog 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. 2004-09-27 Lluis Sanchez Gual <[email protected]>
  2. * ContextsTest.cs: Fixed test sequence.
  3. * RemotingServicesTest.cs: Minor fix.
  4. * ServerObject.cs: Added check for transparent proxy in all CBO methods.
  5. 2004-07-02 Lluis Sanchez Gual <[email protected]>
  6. * ActivationTests.cs: Fixed and enhanced tests.
  7. * RemotingServicesTest.cs: Added.
  8. 2004-06-23 Lluis Sanchez Gual <[email protected]>
  9. * ActivationTests.cs: New tests.
  10. * BaseCalls.cs, CallSeq.cs: Use Assert instead of the deprecated Assertion.
  11. 2004-05-03 Lluis Sanchez Gual <[email protected]>
  12. * AsyncCalls.cs, BaseCalls.cs, DelegateCalls.cs, ReflectionCalls.cs,
  13. ServerObject.cs, SyncCalls.cs: Improved PrimitiveParamsInOut test case.
  14. 2004-02-23 Lluis Sanchez Gual <[email protected]>
  15. * AsyncCalls.cs, BaseCalls.cs, CallSeq.cs, ContextHookAttribute.cs,
  16. ContextsTest.cs, CrossDomainCalls.cs, DelegateCalls.cs, HttpCalls.cs,
  17. ReflectionCalls.cs, ServerObject.cs, SyncCalls.cs, TcpCalls.cs:
  18. Shortened namespace name.
  19. 2003-11-11 Lluis Sanchez Gual <[email protected]>
  20. * BaseCalls.cs: Little fix.
  21. * ContextsTest.cs: Unregister dynamic properties even if there is an exception.
  22. * CrossDomainCalls.cs: New test for the cross-app domain channel.
  23. 2003-09-01 Nick Drochak <[email protected]>
  24. * AsyncCalls.cs: Fix Build breaker on .NET 1.1.
  25. 2003-08-22 Lluis Sanchez Gual <[email protected]>
  26. * BaseCalls.cs: Create 3 test remote objects, one for each kind of access,
  27. to avoid reuse of client proxies.
  28. * CallSeq.cs: Now, "domain ID" is set manually.
  29. * ContextsTest.cs: Added initialization of common domain id. Other small fixes.
  30. * ReflectionCalls.cs: Get the method for the invoke for the correct type.
  31. GetType() for a proxy to interface always return MarshalByRefObject.
  32. * TcpCalls.cs, HttpCalls.cs: Added delegate tests.
  33. * DelegateCalls.cs: New test suite for calls using delegates.
  34. 2003-08-20 Lluis Sanchez Gual <[email protected]>
  35. * AsyncCalls.cs, BaseCalls.cs, HttpCalls.cs, ReflectionCalls.cs, SyncCalls.cs,
  36. TcpCalls.cs: new test suite for remoting. It tests sync calls, async calls
  37. and reflection calls using tcp and http channels.
  38. * CallSeq.cs, ContextHookAttribute.cs: Add methods for getting a context and
  39. domain ids that are the same between tests runs.
  40. * ContextsTest.cs: unregister channel on test shutdown.
  41. 2003-07-23 Lluis Sanchez Gual <[email protected]>
  42. * ContextsTest.cs, CallSeq.cs, ContextHookAttribute.cs, ServerObject.cs: Added.