AllTests.cs 704 B

123456789101112131415161718192021222324252627
  1. //
  2. // TestSuite.System.Security.AllSecurityTests.cs
  3. //
  4. // Lawrence Pit <[email protected]>
  5. //
  6. using System;
  7. using NUnit.Framework;
  8. namespace MonoTests.System.Security {
  9. /// <summary>
  10. /// Combines all available unit tests into one test suite.
  11. /// </summary>
  12. public class AllTests : TestCase {
  13. public AllTests (string name) : base (name) {}
  14. public static ITest Suite {
  15. get {
  16. TestSuite suite = new TestSuite ();
  17. suite.AddTest (SecurityElementTest.Suite);
  18. return suite;
  19. }
  20. }
  21. }
  22. }