In corlib/System.Runtime.InteropServices:
[mono.git] / mcs / class / System.Runtime.Remoting / Test / ChangeLog
1 2007-01-09  Robert Jordan  <robertj@gmx.net>
2
3         * GenericTest.cs: Added test for generics in remoting interfaces.
4         See bug #80383.
5
6 2006-12-18  Lluis Sanchez Gual  <lluis@ximian.com>
7
8         * BaseCalls.cs: Added some tests for exceptions.
9
10 2005-12-02  Robert Jordan  <robertj@gmx.net>
11
12         * RemotingServicesTest.cs: Added test for bug #76809.
13
14 2005-12-01  Robert Jordan  <robertj@gmx.net>
15
16         * IpcCalls.cs: Made the IPC channel names unique to match the
17         Tcp/HttpChannel(0) semantics, because the test suite
18         relies on that.
19
20 2005-10-16  Robert Jordan  <robertj@gmx.net>
21
22         * IpcCalls.cs: Added.
23
24 2005-04-27  Lluis Sanchez Gual  <lluis@ximian.com>
25
26         * RemotingServicesTest.cs: Fix warning.
27         * ContextsTest.cs: Removed unneeded exception catch.
28         Changed the order in which GetEnvoySink is called. I think 
29         this is a safe chenge, since it is not defined where the
30         call to GetEnvoySink should be made.
31
32 2005-02-16  Lluis Sanchez Gual  <lluis@ximian.com>
33
34         * HttpCalls.cs, TcpCalls.cs: Don't use a hardcoded port number for the
35         test channels, take any free port.
36
37 2004-12-17  Lluis Sanchez Gual  <lluis@ximian.com>
38
39         * HttpCalls.cs: Use a different port.
40
41 2004-12-17  Lluis Sanchez Gual <lluis@ximian.com>
42
43         * BaseCalls.cs: Removed useless try/catch.
44
45 2004-09-27  Lluis Sanchez Gual <lluis@ximian.com>
46
47         * ContextsTest.cs: Fixed test sequence.
48         * RemotingServicesTest.cs: Minor fix.
49         * ServerObject.cs: Added check for transparent proxy in all CBO methods.
50
51 2004-07-02  Lluis Sanchez Gual <lluis@ximian.com>
52
53         * ActivationTests.cs: Fixed and enhanced tests.
54         * RemotingServicesTest.cs: Added.
55
56 2004-06-23  Lluis Sanchez Gual <lluis@ximian.com>
57
58         * ActivationTests.cs: New tests.
59         * BaseCalls.cs, CallSeq.cs: Use Assert instead of the deprecated Assertion.
60
61 2004-05-03  Lluis Sanchez Gual <lluis@ximian.com>
62
63         * AsyncCalls.cs, BaseCalls.cs, DelegateCalls.cs, ReflectionCalls.cs, 
64           ServerObject.cs, SyncCalls.cs: Improved PrimitiveParamsInOut test case.
65
66 2004-02-23  Lluis Sanchez Gual <lluis@ximian.com>
67
68         * AsyncCalls.cs, BaseCalls.cs, CallSeq.cs, ContextHookAttribute.cs, 
69           ContextsTest.cs, CrossDomainCalls.cs, DelegateCalls.cs, HttpCalls.cs,
70           ReflectionCalls.cs, ServerObject.cs, SyncCalls.cs, TcpCalls.cs:
71           Shortened namespace name.
72
73 2003-11-11  Lluis Sanchez Gual <lluis@ximian.com>
74
75         * BaseCalls.cs: Little fix.
76         * ContextsTest.cs: Unregister dynamic properties even if there is an exception.
77         * CrossDomainCalls.cs: New test for the cross-app domain channel.
78           
79 2003-09-01  Nick Drochak  <ndrochak@gol.com>
80
81         * AsyncCalls.cs: Fix Build breaker on .NET 1.1.
82
83 2003-08-22  Lluis Sanchez Gual <lluis@ximian.com>
84
85         * BaseCalls.cs: Create 3 test remote objects, one for each kind of access,
86           to avoid reuse of client proxies.
87         * CallSeq.cs: Now, "domain ID" is set manually.
88         * ContextsTest.cs: Added initialization of common domain id. Other small fixes.
89         * ReflectionCalls.cs: Get the method for the invoke for the correct type.
90           GetType() for a proxy to interface always return MarshalByRefObject.
91         * TcpCalls.cs, HttpCalls.cs: Added delegate tests.
92         * DelegateCalls.cs: New test suite for calls using delegates.
93
94 2003-08-20  Lluis Sanchez Gual <lluis@ximian.com>
95
96         * AsyncCalls.cs, BaseCalls.cs, HttpCalls.cs, ReflectionCalls.cs, SyncCalls.cs,
97           TcpCalls.cs: new test suite for remoting. It tests sync calls, async calls
98           and reflection calls using tcp and http channels.
99         * CallSeq.cs, ContextHookAttribute.cs: Add methods for getting a context and
100           domain ids that are the same between tests runs.
101         * ContextsTest.cs: unregister channel on test shutdown.
102
103 2003-07-23  Lluis Sanchez Gual <lluis@ximian.com>
104
105         * ContextsTest.cs, CallSeq.cs, ContextHookAttribute.cs, ServerObject.cs: Added.