Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ITest.cs « nist_dom « System.Xml « Test « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9e52aa83d5418dff4aae8c55fe66847ec8dccbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//**************************************************************************
//
//
//                       National Institute Of Standards and Technology
//                                     DTS Version 1.0
//         
//
//
// Ported to System.Xml by: Mizrahi Rafael rafim@mainsoft.com
// Mainsoft Corporation (c) 2003-2004
//
//**************************************************************************
using System;

namespace nist_dom
{
	/// <summary>
	/// Summary description for ITest.
	/// </summary>
	public interface ITest
	{
        testResults[] RunTests();
	}
}