C# Класс 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.
Наследование: WorkItem
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
PerformWork ( ) : void

Method that performs actually performs the work.

Описание методов

PerformWork() защищенный Метод

Method that performs actually performs the work.
protected PerformWork ( ) : void
Результат void

SimpleWorkItem() публичный Метод

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
Результат System

SimpleWorkItem() публичный Метод

Construct a simple work item for a test.
public SimpleWorkItem ( TestMethod test, FinallyDelegate fd ) : System
test TestMethod The test to be executed
fd FinallyDelegate
Результат System