AllTests.cs 516 B

1234567891011121314151617181920212223242526
  1. //
  2. // assembly: System_test
  3. // namespace: MonoTests.System.Text.RegularExpressions
  4. // file: AllTests.cs
  5. //
  6. // author: Dan Lewis ([email protected])
  7. // (c) 2002
  8. using System;
  9. using NUnit.Framework;
  10. namespace MonoTests.System.Text.RegularExpressions {
  11. public class AllTests : TestCase {
  12. public AllTests (string name) : base (name) { }
  13. public static ITest Suite {
  14. get {
  15. TestSuite suite = new TestSuite ();
  16. suite.AddTest (PerlTest.Suite);
  17. return suite;
  18. }
  19. }
  20. }
  21. }