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

TODO: Documentation needed for class
Inheritance: NUnit.Framework.Internal.Commands.DelegatingTestCommand
Show file Open project: pjcollins/Andr.Unit

Public Methods

Method 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

Method 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 method

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.
return TestResult

ExpectedExceptionCommand() public method

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.
return System

ProcessException() public method

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

ProcessNoException() public method

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