Metadata-Version: 2.1
Name: get-test-cases-from-TFS
Version: 0.3.0
Summary: this Lib is to get the TFS testPlan data, and communicate with TFS API to get the test cases from TFS. Then extract the Testcases as XML file.
Author: Ayman Mansour, Mohanad Hesham
Author-email: Ayman.Mansour@integrant.com, Mohanad.hesham@integrant.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

to install the Lib: 
* Excute the command **pip install get-test-cases-from-TFS==0.x.0** where x is the required version

to use the lib:
* use **create_config_from_user_data** imported from **create_config_file** method to pass the TFS project data and TFS API key, then it will create the config file and store the parameters in it(append the params to the existing file if any)
* use **featch_testcases_from_TFS** imported from **featch_testcases_from_TFS** method to get the json response of TFS as it is, including all the info
* use **fetch_test_cases_and_create_xml** imported from **communicate_TFS** to get the XML file that contains the testcases from the TFS, the cases are the ones in the test plan with the same ID which is passed in create config from user data method
