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

ITestSuiteLoader.cs « NUnitCore « src « nunit « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7bc5bdc1f05e26429a44db86375f3b44cf7ca0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace NUnit.Runner {

  using System;

  /// <summary>An interface to define how a test suite should be
  /// loaded.</summary>
  public interface ITestSuiteLoader {
    /// <summary>
    /// 
    /// </summary>
    Type Load(string suiteClassName);
  /// <summary>
  /// 
  /// </summary>
    Type Reload(Type aType);
  }
}