2002-06-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Mon, 24 Jun 2002 11:34:14 +0000 (11:34 -0000)
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Mon, 24 Jun 2002 11:34:14 +0000 (11:34 -0000)
* AllTests.cs: New file to make 'make test' work.
* ChangeLog: New file.

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

mcs/class/corlib/Test/System.Runtime.Serialization/AllTests.cs [new file with mode: 0644]
mcs/class/corlib/Test/System.Runtime.Serialization/ChangeLog [new file with mode: 0644]

diff --git a/mcs/class/corlib/Test/System.Runtime.Serialization/AllTests.cs b/mcs/class/corlib/Test/System.Runtime.Serialization/AllTests.cs
new file mode 100644 (file)
index 0000000..8ec0e27
--- /dev/null
@@ -0,0 +1,28 @@
+//
+// MonoTests.System.Runtime.Serialization.AllTests
+//
+// Authors:
+//     Gonzalo Paniagua Javier (gonzalo@ximian.com)
+//
+// (C) 2002 Ximian, Inc.  (http://www.ximian.com)
+// 
+
+using System;
+using NUnit.Framework;
+
+namespace MonoTests.System.Runtime.Serialization {
+        public class AllTests : TestCase
+       {
+                public AllTests (string name) : base(name) {}
+                
+                public static ITest Suite 
+                { 
+                        get {
+                                TestSuite suite =  new TestSuite();
+                                suite.AddTest(ObjectIDGeneratorTests.Suite);
+                                return suite;
+                        }
+                }
+        }
+}
+
diff --git a/mcs/class/corlib/Test/System.Runtime.Serialization/ChangeLog b/mcs/class/corlib/Test/System.Runtime.Serialization/ChangeLog
new file mode 100644 (file)
index 0000000..9e05184
--- /dev/null
@@ -0,0 +1,5 @@
+2002-06-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
+\r
+       * AllTests.cs: New file to make 'make test' work.\r
+       * ChangeLog: New file.\r
+\r