2004-09-26 Zoltan Varga <vargaz@freemail.hu>
authorZoltan Varga <vargaz@gmail.com>
Sun, 26 Sep 2004 14:44:43 +0000 (14:44 -0000)
committerZoltan Varga <vargaz@gmail.com>
Sun, 26 Sep 2004 14:44:43 +0000 (14:44 -0000)
* corlib_test.dll.sources: Add System.Reflection/MethodInfoTest.

svn path=/trunk/mcs/; revision=34407

mcs/class/corlib/ChangeLog
mcs/class/corlib/Test/System.Reflection/ChangeLog
mcs/class/corlib/Test/System.Reflection/MethodInfoTest.cs [new file with mode: 0644]
mcs/class/corlib/corlib_test.dll.sources

index b7a494b09513dadd3628e07946744b021bd57129..78a47e2d8512a7b50e2ac0b4d690b731f896ee6e 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
+
+       * corlib_test.dll.sources: Add System.Reflection/MethodInfoTest.
+
 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
 
        * corlib_test.dll.sources: Add System.Reflection/ParameterInfoTest.
index 99a26d94f2a10c7b6e077fef3661aedd1eee9148..faea2ea2f486c7df09860f9620ad3d60eeba495d 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
+
+       * MethodInfoTest.cs: New file.
+
 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
 
        * ParameterInfoTest.cs: New file.
diff --git a/mcs/class/corlib/Test/System.Reflection/MethodInfoTest.cs b/mcs/class/corlib/Test/System.Reflection/MethodInfoTest.cs
new file mode 100644 (file)
index 0000000..78610cc
--- /dev/null
@@ -0,0 +1,62 @@
+//
+// System.Reflection.MethodInfo Test Cases
+//
+// Authors:
+//  Zoltan Varga (vargaz@gmail.com)
+//
+// (c) 2003 Ximian, Inc. (http://www.ximian.com)
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using NUnit.Framework;
+using System;
+using System.Reflection;
+using System.Runtime.InteropServices;
+
+namespace MonoTests.System.Reflection
+{
+       [TestFixture]
+       public class MethodInfoTest : Assertion
+       {
+               [DllImport ("libfoo", EntryPoint="foo", CharSet=CharSet.Unicode, ExactSpelling=false, PreserveSig=true, SetLastError=true, BestFitMapping=true, ThrowOnUnmappableChar=true)]
+               public static extern void dllImportMethod ();
+
+#if NET_2_0
+               [Test]
+               public void PseudoCustomAttributes ()
+               {
+                       DllImportAttribute attr = (DllImportAttribute)((typeof (MethodInfoTest).GetMethod ("dllImportMethod").GetCustomAttributes (typeof (DllImportAttribute), true)) [0]);
+
+                       AssertEquals (CallingConvention.Winapi, attr.CallingConvention);
+                       AssertEquals ("foo", attr.EntryPoint);
+                       AssertEquals ("libfoo", attr.Value);
+                       AssertEquals (CharSet.Unicode, attr.CharSet);
+                       AssertEquals (false, attr.ExactSpelling);
+                       AssertEquals (true, attr.PreserveSig);
+                       AssertEquals (true, attr.SetLastError);
+                       AssertEquals (true, attr.BestFitMapping);
+                       AssertEquals (true, attr.ThrowOnUnmappableChar);
+               }
+#endif
+       }
+}
+
index 39edb76e29fa1c3643c8cc481b27eb82853b897b..32d8a09184abdbd491871f2d08b0a302cd63f750 100755 (executable)
@@ -81,6 +81,7 @@ System.Reflection/AssemblyInformationalVersionAttributeTest.cs
 System.Reflection/AssemblyNameTest.cs
 System.Reflection/AssemblyTest.cs
 System.Reflection/BinderTests.cs
+System.Reflection/MethodInfoTest.cs
 System.Reflection/ParameterInfoTest.cs
 System.Reflection/PropertyInfoTest.cs
 System.Reflection.Emit/AssemblyBuilderTest.cs