Add this for backwards compatibility
[mono.git] / mcs / class / System.Runtime.Remoting / Test / DelegateCalls.cs
index be6fd3440b7bf287527a276a9429df6d3a189e79..f21da9788f3161f15f448f1b6bc2e2097a31012a 100644 (file)
@@ -1,5 +1,5 @@
 //
-// MonoTests.System.Runtime.Remoting.DelegateCalls.cs
+// MonoTests.Remoting.DelegateCalls.cs
 //
 // Author: Lluis Sanchez Gual (lluis@ximian.com)
 //
@@ -12,7 +12,7 @@ using NUnit.Framework;
 using System.Text;
 using System.Runtime.InteropServices;
 
-namespace MonoTests.System.Runtime.Remoting
+namespace MonoTests.Remoting
 {
        public abstract class DelegateCallTest : BaseCallTest
        {
@@ -35,10 +35,10 @@ namespace MonoTests.System.Runtime.Remoting
                        return de (a,b,c,d);
                }
 
-               public override string PrimitiveParamsInOut (ref int a1, out int a2, ref float b1, out float b2, ref char c1, out char c2, ref string d1, out string d2)
+               public override string PrimitiveParamsInOut (ref int a1, out int a2, ref float b1, out float b2, int filler, ref char c1, out char c2, ref string d1, out string d2)
                {
                        DelegatePrimitiveParamsInOut de = new DelegatePrimitiveParamsInOut (RemoteObject.PrimitiveParamsInOut);
-                       return de (ref a1, out a2, ref b1, out b2, ref c1, out c2, ref d1, out d2);
+                       return de (ref a1, out a2, ref b1, out b2, filler, ref c1, out c2, ref d1, out d2);
                }
 
                public override Complex ComplexParams (ArrayList a, Complex b, string c)
@@ -74,10 +74,10 @@ namespace MonoTests.System.Runtime.Remoting
                        return de (a,b,c,d);
                }
 
-               public override string PrimitiveParamsInOut (ref int a1, out int a2, ref float b1, out float b2, ref char c1, out char c2, ref string d1, out string d2)
+               public override string PrimitiveParamsInOut (ref int a1, out int a2, ref float b1, out float b2, int filler, ref char c1, out char c2, ref string d1, out string d2)
                {
                        DelegatePrimitiveParamsInOut de = new DelegatePrimitiveParamsInOut (RemoteObject.PrimitiveParamsInOut);
-                       return de (ref a1, out a2, ref b1, out b2, ref c1, out c2, ref d1, out d2);
+                       return de (ref a1, out a2, ref b1, out b2, filler, ref c1, out c2, ref d1, out d2);
                }
 
                public override Complex ComplexParams (ArrayList a, Complex b, string c)
@@ -113,10 +113,10 @@ namespace MonoTests.System.Runtime.Remoting
                        return de (a,b,c,d);
                }
 
-               public override string PrimitiveParamsInOut (ref int a1, out int a2, ref float b1, out float b2, ref char c1, out char c2, ref string d1, out string d2)
+               public override string PrimitiveParamsInOut (ref int a1, out int a2, ref float b1, out float b2, int filler, ref char c1, out char c2, ref string d1, out string d2)
                {
                        DelegatePrimitiveParamsInOut de = new DelegatePrimitiveParamsInOut (RemoteObject.PrimitiveParamsInOut);
-                       return de (ref a1, out a2, ref b1, out b2, ref c1, out c2, ref d1, out d2);
+                       return de (ref a1, out a2, ref b1, out b2, filler, ref c1, out c2, ref d1, out d2);
                }
 
                public override Complex ComplexParams (ArrayList a, Complex b, string c)