@echo off
setlocal

set TOTAL=%~1
set CONCURRENCY=%~2

if "%TOTAL%"=="" set TOTAL=1
if "%CONCURRENCY%"=="" set CONCURRENCY=1

powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0orderPay-load-test.ps1" -Total %TOTAL% -Concurrency %CONCURRENCY%

endlocal
