C# Class Cone.TestAdapter.TestAdapterLogger

Inheritance: System.MarshalByRefObject, ICrossDomainLogger
Show file Open project: drunkcod/Cone Class Usage Examples

Public Properties

Property Type Description
OnBeginTest EventHandler
OnFailure EventHandler
OnPending EventHandler
OnSuccess EventHandler

Public Methods

Method Description
BeginTest ( ConeTestName test ) : void
Error ( string message ) : void
Failure ( string file, int line, int column, string message, string stackTrace ) : void
Info ( string message ) : void
Pending ( string reason ) : void
Success ( ) : void
TestAdapterLogger ( IMessageLogger logger, string source ) : System

Method Details

BeginTest() public method

public BeginTest ( ConeTestName test ) : void
test Cone.Core.ConeTestName
return void

Error() public method

public Error ( string message ) : void
message string
return void

Failure() public method

public Failure ( string file, int line, int column, string message, string stackTrace ) : void
file string
line int
column int
message string
stackTrace string
return void

Info() public method

public Info ( string message ) : void
message string
return void

Pending() public method

public Pending ( string reason ) : void
reason string
return void

Success() public method

public Success ( ) : void
return void

TestAdapterLogger() public method

public TestAdapterLogger ( IMessageLogger logger, string source ) : System
logger IMessageLogger
source string
return System

Property Details

OnBeginTest public property

public EventHandler OnBeginTest
return EventHandler

OnFailure public property

public EventHandler OnFailure
return EventHandler

OnPending public property

public EventHandler OnPending
return EventHandler

OnSuccess public property

public EventHandler OnSuccess
return EventHandler