AllTests.cs 546 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // TestSuite.System.Security.AllTests.cs
  3. //
  4. // Author:
  5. // Sebastien Pouliot ([email protected])
  6. //
  7. // (C) 2002 Motus Technologies Inc. (http://www.motus.com)
  8. //
  9. using System;
  10. using System.Security.Cryptography;
  11. using NUnit.Framework;
  12. namespace MonoTests.System.Security{
  13. public class AllTests : TestCase {
  14. public AllTests (string name) : base (name) {}
  15. public static ITest Suite {
  16. get {
  17. TestSuite suite = new TestSuite ();
  18. suite.AddTest (System.Security.Cryptography.Xml.AllTests.Suite);
  19. return suite;
  20. }
  21. }
  22. }
  23. }