Testcase management from third party testtools

잠김 Testcase management from third party testtools

  • 2007년 9월 16일 일요일 오전 4:36
     
     
    Hello,
    I am using soapUI, a web services testing tool, to test web services. We have thousands of testcases and their descriptions all stored within this application. We were using Mercury Quality Center to manage test cases. Since Mercury QC has an open API we were able to add and update testcase from within soapUI.

    Now that we are moving to TFS, can someone tell how to move my thousands of testcase from soapUI or Quality Center to TFS.
    1. Is it possible to upload testcases from a excel sheet ?
    2. Does TFS expose some API to access testcases so that their status can be updated.
    3. can some .NET code be writting to bypass manually interacting with test manager.

    I am sure that anyone moving to TFS should naturally want to know how to migrate their existing infrastructure to TFS

    Thanks

    Ali

모든 응답

  • 2007년 9월 17일 월요일 오후 3:39
     
     답변됨

    A test case is a type of work item.  For example, a where clause of a wiql query to retrieve test cases would look as follows:

      WHERE [System.WorkItemType] = 'Test Case' AND [System.TeamProject = @project

     

    Therefore, you can use the publishhed apis  or overviews on msdn to move your test cases into TFS.  A quick sample might be as follows:

     

    Below is quick sample.

                WorkItemStore store = new WorkItemStore("serverName");

                Project proj = store.Projects["projectName"];

                WorkItemType type = proj.WorkItemTypes["WorkItemType"];

                WorkItem workItem = new WorkItem(type);

                workItem.Title = "title";

                workItem["Field Name"] = "test";

                workItem.Save();

     

  • 2007년 10월 16일 화요일 오전 10:49
     
     

    Hi

    I don't know about TFS, but you could try through XML. Both Soapui & TD supports exporting to xml files.

     

    I'd be very interested in having some info & samples on how you integrated soapui & testdirector.

    We're using both tools but have no integration between them at the moment.

     

    Kinds

    Philippe.

     

    If you want to take contact, email me at philippe.lebacq@toyota-europe.com

  • 2007년 11월 14일 수요일 오후 11:55
     
     

    Hi Ali,

    I am using soapUI for testing.

    How do I mange the test cases in Quality Center from soapUI.

    As you are already done the mapping can you help me out on this.

    my mail id is manojjena78@hotmail.com

     

    Thanks,

    Manoj

     

  • 2008년 4월 24일 목요일 오전 12:07
     
     

     

    Hi Ali,

             Could you please tell us how you have integrated Soapui with testdirector or quality center?Your guidance is highly appreciated here.

     

     

    Thanks,

    Raj

  • 2008년 4월 30일 수요일 오전 6:41
     
     

    hi,

     

    Please mention how did you manage to use QC with Soap UI.

     

    My email id being geethanjali.seenu@cognizant.com

     

    Thanks

    S.Geethanjali

  • 2008년 4월 30일 수요일 오전 9:15
     
     

    Hi,

     

    I was just looking for this type of integration and I came across this site:

    http://onroad.juvander.fi/Community/blogs/news/archive/2008/02/24/released-tfs-bug-item-synchronizer-1-4-for-quality-center.aspx

     

    It's a tool that performs the synching for you, no need to write it yourself.

     

    Hope it helps,

    Jeroen

  • 2008년 5월 15일 목요일 오전 11:49
     
     

    Pls Share the information of how to integrate SOAP UI wiht Quality Center. Your help is greatly appreciated

  • 2008년 5월 20일 화요일 오전 3:05
     
     
    sgeethanjali I think you are going to stand more of a chance of getting an answer to this in a QC or other forum, this forum is focussed on Microsoft products.


  • 2009년 9월 25일 금요일 오전 10:24
     
     
    Hello,
    Please check out the first plugin for integration soapUI with HP Quality Center. The plugin allows you to sync test cases with Quality Center and also update test cases in QC. Some of the features are for this plugin are:
    * windows installer for easy installation
    * ability to export soapui request/response to QC 
    * ability to update test case name, test steps status
    * soapUI Action (button on project level) to sync with Quality Center.
    * some other bug fixes and enhancements

    I would really appreciate if your team can register on the website and download the latest trail version of the plugin for testing the functionality. Comprehensive user guide with screen shots can be found on the website.

    As always, your comments and suggestions are highly valuable. Please use the forums to suggest new features or bugs.

    Sincerely

    Farooq
    www.agiletestware.com 
  • 2012년 7월 21일 토요일 오후 2:31
     
     

    Use tool to export to Excel: http://bbs.51testing.com/thread-746859-1-1.html

    Set the items in TFS, load the Excel to TFS