C# Класс Meyn.TestLink.TestStep

represent a single test step in a test case
Наследование: TL_Data
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
actions string
active bool
execution_type int
expected_results string
id int
step_number int

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

Метод Описание
TestStep ( int stepNr, string actions, string expectedResult, bool isActive, int executionType ) : System

constructor used when defining new steps when creating testcases

Приватные методы

Метод Описание
TestStep ( CookComputing.XmlRpc.XmlRpcStruct data ) : System

constructor used by the XML Rpc return

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

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

constructor used when defining new steps when creating testcases
public TestStep ( int stepNr, string actions, string expectedResult, bool isActive, int executionType ) : System
stepNr int sequential id, start with 1
actions string formatted text, use html style text format tags
expectedResult string formatted text, use html style text format tags
isActive bool set to true
executionType int 1=manual, 2=automatic
Результат System

Описание свойств

actions публичное свойство

string describing the actions
public string actions
Результат string

active публичное свойство

flag whether this step is active
public bool active
Результат bool

execution_type публичное свойство

1=manual or 2=automated
public int execution_type
Результат int

expected_results публичное свойство

string desribing the expected result in this step
public string expected_results
Результат string

id публичное свойство

interenal primary key.
public int id
Результат int

step_number публичное свойство

step number. Starts at 1
public int step_number
Результат int