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

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

  using System;

  using NUnit.Framework;

  /// <summary>
  ///    A view to show details about a failure
  /// </summary>
  public interface IFailureDetailView {
    /// <summary>
    /// Clears the view
    /// </summary>
    void Clear();

    /// <summary>
    /// Shows details of a TestFailure
    /// </summary>
    void ShowFailure(TestFailure failure);
  }
}