C# Class NUnit.Framework.Internal.Commands.ExpectedExceptionCommand

TODO: Documentation needed for class
Inheritance: NUnit.Framework.Internal.Commands.DelegatingTestCommand
Afficher le fichier Open project: pjcollins/Andr.Unit

Méthodes publiques

Méthode Description
Execute ( TestExecutionContext context ) : TestResult

Runs the test, saving a TestResult in the supplied TestExecutionContext

ExpectedExceptionCommand ( NUnit.Framework.Internal.Commands.TestCommand innerCommand, NUnit.Framework.Api.ExpectedExceptionData exceptionData ) : System

Initializes a new instance of the ExpectedExceptionCommand class.

ProcessException ( Exception exception, TestExecutionContext context ) : void

Handles processing when an exception was thrown.

ProcessNoException ( TestExecutionContext context ) : void

Handles processing when no exception was thrown.

Private Methods

Méthode Description
CombineWithUserMessage ( string message ) : string
GetStackTrace ( Exception exception ) : string
IsExpectedExceptionType ( Exception exception ) : bool
IsExpectedMessageMatch ( Exception exception ) : bool
NoExceptionMessage ( ) : string
WrongTextMessage ( Exception exception ) : string
WrongTypeMessage ( Exception exception ) : string

Method Details

Execute() public méthode

Runs the test, saving a TestResult in the supplied TestExecutionContext
public Execute ( TestExecutionContext context ) : TestResult
context TestExecutionContext The context in which the test is to be run.
Résultat TestResult

ExpectedExceptionCommand() public méthode

Initializes a new instance of the ExpectedExceptionCommand class.
public ExpectedExceptionCommand ( NUnit.Framework.Internal.Commands.TestCommand innerCommand, NUnit.Framework.Api.ExpectedExceptionData exceptionData ) : System
innerCommand NUnit.Framework.Internal.Commands.TestCommand The inner command.
exceptionData NUnit.Framework.Api.ExpectedExceptionData The exception data.
Résultat System

ProcessException() public méthode

Handles processing when an exception was thrown.
public ProcessException ( Exception exception, TestExecutionContext context ) : void
exception System.Exception The exception.
context TestExecutionContext The execution context.
Résultat void

ProcessNoException() public méthode

Handles processing when no exception was thrown.
public ProcessNoException ( TestExecutionContext context ) : void
context TestExecutionContext The execution context.
Résultat void