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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// ****************************************************************
// Copyright 2007, Charlie Poole
// This is free software licensed under the NUnit license. You may
// obtain a copy of the license at http://nunit.org
// ****************************************************************
using System;
using NUnit.Util;
using NUnit.Core;
namespace NUnit.UiKit
{
/// <summary>
/// The TextDisplay interface is implemented by object - generally
/// controls - that display text.
/// </summary>
public interface TextDisplay : TestObserver
{
/// <summary>
/// The output types handled by this display
/// </summary>
TextDisplayContent Content { get; set; }
/// <summary>
/// Clears the display
/// </summary>
void Clear();
/// <summary>
/// Appends text to the display
/// </summary>
/// <param name="text">The text to append</param>
void Write( string text );
/// <summary>
/// Appends text to the display followed by a newline
/// </summary>
/// <param name="text">The text to append</param>
void WriteLine( string text );
void Write( NUnit.Core.TestOutput output );
/// <summary>
/// Gets the current text - used mainly for testing
/// </summary>
string GetText();
}
}
|