C# Класс Jwc.Experiment.Xunit.TestCommandContext

Represents a base class for test command context.
Наследование: ITestCommandContext
Показать файл Открыть проект

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

Метод Описание
GetArguments ( ITestMethodContext context ) : IEnumerable

Gets test arguments.

GetMethodContext ( object testObject ) : ITestMethodContext

Gets information of the test method.

GetStaticMethodContext ( ) : ITestMethodContext

Gets information of the static test method.

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

Метод Описание
TestCommandContext ( ISpecimenBuilderFactory factory, IEnumerable arguments ) : System

Initializes a new instance of the TestCommandContext class.

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

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

Gets test arguments.
public GetArguments ( ITestMethodContext context ) : IEnumerable
context ITestMethodContext /// Information of the test method. ///
Результат IEnumerable

GetMethodContext() публичный абстрактный Метод

Gets information of the test method.
public abstract GetMethodContext ( object testObject ) : ITestMethodContext
testObject object /// The test object. ///
Результат ITestMethodContext

GetStaticMethodContext() публичный абстрактный Метод

Gets information of the static test method.
public abstract GetStaticMethodContext ( ) : ITestMethodContext
Результат ITestMethodContext

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

Initializes a new instance of the TestCommandContext class.
protected TestCommandContext ( ISpecimenBuilderFactory factory, IEnumerable arguments ) : System
factory ISpecimenBuilderFactory /// A factory to create test fixture. ///
arguments IEnumerable /// Explicit arguments of the test method. ///
Результат System