IGLib  1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
Package NUnit.Framework.Internal.Execution

Classes

class  CommandBuilder
 A utility class to create TestCommands More...
 
class  CompositeWorkItem
 A CompositeWorkItem represents a test suite and encapsulates the execution of the suite as well as all its child tests. More...
 
class  CountdownEvent
 A simplified implementation of .NET 4 CountdownEvent for use in earlier versions of .NET. Only the methods used by NUnit are implemented. More...
 
interface  IWorkItemDispatcher
 An IWorkItemDispatcher handles execution of work items. More...
 
class  SimpleWorkItem
 A SimpleWorkItem represents a single test case and is marked as completed immediately upon execution. This class is also used for skipped or ignored test suites. More...
 
class  SimpleWorkItemDispatcher
 SimpleWorkItemDispatcher handles execution of WorkItems by directly executing them. It is provided so that a dispatcher is always available in the context, thereby simplifying the code needed to run child tests. More...
 
class  TextCapture
 The TextCapture class intercepts console output and writes it to the current execution context, if one is present on the thread. If no execution context is found, the output is written to a default destination, normally the original destination of the intercepted output. More...
 
class  WorkItem
 A WorkItem may be an individual test case, a fixture or a higher level grouping of tests. All WorkItems inherit from the abstract WorkItem class, which uses the template pattern to allow derived classes to perform work in whatever way is needed. More...
 

Enumerations

enum  WorkItemState { WorkItemState.Ready, WorkItemState.Running, WorkItemState.Complete }
 The current state of a work item More...
 

Enumeration Type Documentation

The current state of a work item

Enumerator
Ready 

Ready to run or continue

Running 

Work Item is executing

Complete 

Complete