SquishRunTestCase.bat 208 B

1234567891011
  1. echo 'Starting the squish server...'
  2. start %1
  3. echo 'Running the test case...'
  4. %2 --testcase %3 --wrapper %4 --aut %5
  5. set result=%ERRORLEVEL%
  6. echo 'Stopping the squish server...'
  7. %1 --stop
  8. exit \b %result%