C# Class Bari.Core.Test.Helper.TestUserOutput

Inheritance: IUserOutput
Afficher le fichier Open project: vigoo/bari Class Usage Examples

Méthodes publiques

Méthode Description
Describe ( string target, string description ) : void

Describe an item with a description for the user.

Error ( string message ) : void

Shows an error message

Indent ( ) : void
Message ( string message ) : void

Outputs a message to the user. The message can be single or multiline.

Reset ( ) : void
Unindent ( ) : void
Warning ( string message, string hints = null ) : void

Shows a warning message

Method Details

Describe() public méthode

Describe an item with a description for the user.
public Describe ( string target, string description ) : void
target string The concept to describe
description string The description
Résultat void

Error() public méthode

Shows an error message
public Error ( string message ) : void
message string Error message
Résultat void

Indent() public méthode

public Indent ( ) : void
Résultat void

Message() public méthode

Outputs a message to the user. The message can be single or multiline.
public Message ( string message ) : void
message string The message to be shown
Résultat void

Reset() public méthode

public Reset ( ) : void
Résultat void

Unindent() public méthode

public Unindent ( ) : void
Résultat void

Warning() public méthode

Shows a warning message
public Warning ( string message, string hints = null ) : void
message string The message to be shown
hints string Optional hints about the warning
Résultat void