Forum Discussion

lalit_singh's avatar
lalit_singh
Contributor
12 months ago

running group of test cases

Hi All;
How can run set of test cases , apart from selecting it in execution plan

3 Replies

  • tristaanogre's avatar
    tristaanogre
    Esteemed Contributor

    If you're looking to run a group of test cases as an automated command line, you can specify test cases, routines, etc., in the commandline.  You can add a tag to all the ones you want to run and then use the /tags commandline expression to execute those.

  • rraghvani's avatar
    rraghvani
    Champion Level 3

    The other option, is to create a main function and call each of your tests

    function main() {
       Test1();
       Test2();
       Test3();
    }

    - not a great way.

     

     

  • MW_Didata's avatar
    MW_Didata
    Regular Contributor

    If it's grouped in the EXE just press this button:

     

    Otherwise make a new test and drag in all the test you want to run