Skip to content

Commit e54bcc7

Browse files
committed
Update TestLinkAPI.py
reportTCResult to report test case results to TestLink
1 parent f423c7c commit e54bcc7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

TestLinkAPI.py

+9
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,15 @@ def createTestCase(self, *args):
328328
self.stepsList = []
329329
return ret
330330

331+
def reportTCResult(self, testcaseid, testplanid, buildid, status, notes ):
332+
argsAPI = {'devKey' : self.devKey,
333+
'testcaseid' : testcaseid,
334+
'testplanid' : testplanid,
335+
'buildid':buildid,
336+
'status': status,
337+
'notes' : notes
338+
}
339+
return self.server.tl.reportTCResult(argsAPI)
331340

332341
#
333342
# ADDITIONNAL FUNCTIONS

0 commit comments

Comments
 (0)