@@ -1046,6 +1046,7 @@ def assignTestCaseExecutionTask(self):
1046
1046
""" assigns a user to a test case execution task
1047
1047
1048
1048
user login name => tester
1049
+ testplanid test plan id
1049
1050
testcaseexternalid format PREFIX-NUMBER
1050
1051
1051
1052
args variations: buildid - buildname
@@ -1110,6 +1111,46 @@ def getTestCaseBugs(self):
1110
1111
test case information is general mandatory
1111
1112
"""
1112
1113
1114
+ # /**
1115
+ # * Gets the result of LAST EXECUTION for a particular testcase on a test plan.
1116
+ # * If there are no filter criteria regarding platform and build,
1117
+ # * result will be get WITHOUT checking for a particular platform and build.
1118
+ # *
1119
+ # * @param struct $args
1120
+ # * @param string $args["devKey"]
1121
+ # * @param int $args["tplanid"]
1122
+ # * @param string $args["testcaseexternalid"] format PREFIX-NUMBER
1123
+ # * @param int $args["buildid"] Mandatory => you can provide buildname as alternative
1124
+ # * @param int $args["buildname"] Mandatory => you can provide buildid (DB ID) as alternative
1125
+ # * @param int $args["platformid"] optional - BECOMES MANDATORY if Test plan has platforms
1126
+ # * you can provide platformname as alternative
1127
+ # *
1128
+ # * @param int $args["platformname"] optional - BECOMES MANDATORY if Test plan has platforms
1129
+ # * you can provide platformid as alternative
1130
+ # *
1131
+ # *
1132
+ # * @return mixed $resultInfo
1133
+ # *
1134
+ # * @access public
1135
+ # */
1136
+ # public function getTestCaseAssignedTester($args)
1137
+
1138
+ @decoApiCallAddDevKey
1139
+ @decoMakerApiCallWithArgs (['testplanid' , 'testcaseexternalid' ],
1140
+ ['buildid' , 'buildname' , 'platformid' , 'platformname' ])
1141
+ def getTestCaseAssignedTester (self ):
1142
+ """ Gets the result of LAST EXECUTION for a particular testcase on a
1143
+ test plan.
1144
+
1145
+ testplanid test plan id
1146
+ testcaseexternalid format PREFIX-NUMBER
1147
+
1148
+ args variations: buildid - buildname
1149
+ platformid - platformname
1150
+ build information is general mandatory
1151
+ platform information is required, when test plan has assigned platforms
1152
+ """
1153
+
1113
1154
#
1114
1155
# public methods for general server calls
1115
1156
#
0 commit comments