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: 424c5a096b7cb6c23a3b9f5776ba0e7660554642 (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
25
26
27
namespace NUnit.Runner {

  using System;
  using System.Windows.Forms;

  using NUnit.Framework;

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

    /// <summary>
    /// Returns the component used to present the TraceView
    /// </summary>
    Control GetComponent();

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