How to run test suite multiple times using command line

Hi Barry,

I think the easiest way to acheive that is Templates with FOR loops

Something like this:

*** Test Cases ***
Template with FOR loop
    [Template]    Example keyword
    FOR    ${index}    IN RANGE    25
        1st arg    ${index}
    END

You can also do it with a listener, like the example in this thread: Can I run Setup, Test and Teardown separately? - #14 by damies13, but the template with a for loop is probably easier

Dave.