Class Event
NUnit.Core.Event is the abstract base for all stored events. An Event is the stored representation of a call to the ITestListener interface and is used to record such calls or to queue them for forwarding on another thread or at a later time.
public abstract class Event
- Inheritance
-
Event
- Derived
- Inherited Members
Constructors
Event()
protected Event()
Methods
Send(ITestListener)
The Send method is implemented by derived classes to send the event to the specified listener.
public abstract void Send(ITestListener listener)
Parameters
listener
ITestListenerThe listener.