C# Class Meyn.TestLink.TestStep

represent a single test step in a test case
Inheritance: TL_Data
Show file Open project: apetrovskiy/STUPS Class Usage Examples

Public Properties

Property Type Description
actions string
active bool
execution_type int
expected_results string
id int
step_number int

Public Methods

Method Description
TestStep ( int stepNr, string actions, string expectedResult, bool isActive, int executionType ) : System

constructor used when defining new steps when creating testcases

Private Methods

Method Description
TestStep ( CookComputing.XmlRpc.XmlRpcStruct data ) : System

constructor used by the XML Rpc return

Method Details

TestStep() public method

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
return System

Property Details

actions public property

string describing the actions
public string actions
return string

active public property

flag whether this step is active
public bool active
return bool

execution_type public property

1=manual or 2=automated
public int execution_type
return int

expected_results public property

string desribing the expected result in this step
public string expected_results
return string

id public property

interenal primary key.
public int id
return int

step_number public property

step number. Starts at 1
public int step_number
return int