// // 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); suite.AddTest (FormatterServicesTests.Suite); return suite; } } } }