ITest.cs 589 B

123456789101112131415161718192021222324
  1. //**************************************************************************
  2. //
  3. //
  4. // National Institute Of Standards and Technology
  5. // DTS Version 1.0
  6. //
  7. //
  8. //
  9. // Ported to System.Xml by: Mizrahi Rafael [email protected]
  10. // Mainsoft Corporation (c) 2003-2004
  11. //
  12. //**************************************************************************
  13. using System;
  14. namespace nist_dom
  15. {
  16. /// <summary>
  17. /// Summary description for ITest.
  18. /// </summary>
  19. public interface ITest
  20. {
  21. testResults[] RunTests();
  22. }
  23. }