C# Class NUnit.Framework.Internal.WorkItems.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.
Inheritance: WorkItem
Afficher le fichier Open project: mono/NUnitLite

Méthodes publiques

Méthode Description
SimpleWorkItem ( NUnit.Framework.Internal.Commands.TestCommand command, FinallyDelegate fd ) : System

Construct a simple work item for a test command.

SimpleWorkItem ( TestMethod test, FinallyDelegate fd ) : System

Construct a simple work item for a test.

Méthodes protégées

Méthode Description
PerformWork ( ) : void

Method that performs actually performs the work.

Method Details

PerformWork() protected méthode

Method that performs actually performs the work.
protected PerformWork ( ) : void
Résultat void

SimpleWorkItem() public méthode

Construct a simple work item for a test command.
public SimpleWorkItem ( NUnit.Framework.Internal.Commands.TestCommand command, FinallyDelegate fd ) : System
command NUnit.Framework.Internal.Commands.TestCommand The command to be executed
fd FinallyDelegate
Résultat System

SimpleWorkItem() public méthode

Construct a simple work item for a test.
public SimpleWorkItem ( TestMethod test, FinallyDelegate fd ) : System
test TestMethod The test to be executed
fd FinallyDelegate
Résultat System