C# Class Meyn.TestLink.ExecutionResult

Represent the recorded outcome of a test case execution.
Inheritance: TL_Data
Show file Open project: apetrovskiy/STUPS

Public Properties

Property Type Description
build_id int
execution_ts System.DateTime
execution_type int
id int
notes string
status TestCaseResultStatus
tcversion_id int
tcversion_number int
tester_id int
testplan_id int

Private Methods

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

constructor used by XMLRPC interface on decoding the function return

Property Details

build_id public property

id of the build this was run against
public int build_id
return int

execution_ts public property

timestamp of execution
public DateTime,System execution_ts
return System.DateTime

execution_type public property

execution type, 1=manual, 2=automatic
public int execution_type
return int

id public property

internal id
public int id
return int

notes public property

notes provided
public string notes
return string

status public property

status, p=pass, f=fail, b=blocked
public TestCaseResultStatus status
return TestCaseResultStatus

tcversion_id public property

version id of test case
public int tcversion_id
return int

tcversion_number public property

external version number
public int tcversion_number
return int

tester_id public property

id of tester
public int tester_id
return int

testplan_id public property

id of testplan
public int testplan_id
return int