File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed
Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ TestLink-API-Python-client v0.6.3 - Under Develop
55------------------------------------------------------------
66support for TL 1.9.15 release
77
8- implement 1.9.14 new api interfaces - #54
8+ implement 1.9.14 new api interfaces - #54 #67
99~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1010
1111new TestlinkAPIGeneric and TestlinkAPIClient api methods
Original file line number Diff line number Diff line change @@ -667,6 +667,20 @@ def test_whatArgs_createTestPlan(self):
667667 self .assertIn ('prefix=<prefix>' , argsDescription )
668668 self .assertIn ('testprojectname=<testprojectname>' , argsDescription )
669669
670+ def test_whatArgs_getTestSuite (self ):
671+ argsDescription = self .api .whatArgs ('getTestSuite' )
672+ self .assertIn ('<testsuitename>, <prefix>' , argsDescription )
673+
674+ def test_whatArgs_updateTestSuite (self ):
675+ argsDescription = self .api .whatArgs ('updateTestSuite' )
676+ self .assertIn ('<testsuiteid>,' , argsDescription )
677+ self .assertIn ('testprojectid=<testprojectid>' , argsDescription )
678+ self .assertIn ('prefix=<prefix>' , argsDescription )
679+ self .assertIn ('parentid=<parentid>' , argsDescription )
680+ self .assertIn ('testsuitename=<testsuitename>' , argsDescription )
681+ self .assertIn ('details=<details>' , argsDescription )
682+ self .assertIn ('order=<order>' , argsDescription )
683+
670684if __name__ == "__main__" :
671685 #import sys;sys.argv = ['', 'Test.testName']
672686 unittest .main ()
Original file line number Diff line number Diff line change @@ -775,6 +775,20 @@ def test_whatArgs_createTestPlan(self):
775775 argsDescription = self .api .whatArgs ('createTestPlan' )
776776 self .assertIn ('prefix=<prefix>' , argsDescription )
777777 self .assertIn ('testprojectname=<testprojectname>' , argsDescription )
778+
779+ def test_whatArgs_getTestSuite (self ):
780+ argsDescription = self .api .whatArgs ('getTestSuite' )
781+ self .assertIn ('<testsuitename>, <prefix>' , argsDescription )
782+
783+ def test_whatArgs_updateTestSuite (self ):
784+ argsDescription = self .api .whatArgs ('updateTestSuite' )
785+ self .assertIn ('<testsuiteid>,' , argsDescription )
786+ self .assertIn ('testprojectid=<testprojectid>' , argsDescription )
787+ self .assertIn ('prefix=<prefix>' , argsDescription )
788+ self .assertIn ('parentid=<parentid>' , argsDescription )
789+ self .assertIn ('testsuitename=<testsuitename>' , argsDescription )
790+ self .assertIn ('details=<details>' , argsDescription )
791+ self .assertIn ('order=<order>' , argsDescription )
778792
779793if __name__ == "__main__" :
780794 #import sys;sys.argv = ['', 'Test.testName']
You can’t perform that action at this time.
0 commit comments