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