C# 클래스 Meyn.TestLink.TestStep

represent a single test step in a test case
상속: TL_Data
파일 보기 프로젝트 열기: apetrovskiy/STUPS 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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