Guest User

Untitled

a guest
May 23rd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. phpunit tests/sometests.php
  2. pause
  3.  
  4. call phpunit tests/sometests.php
  5. pause
  6.  
  7. @echo off
  8.  
  9. CALL :ForcePause "Press any key to resume."
  10. ECHO.
  11. ECHO Hello World!
  12. ECHO.
  13. CALL :ForcePause "Press any key to exit."
  14.  
  15. EXIT
  16.  
  17. REM You can remove echo if you don't want to pass custom string for pause
  18. :ForcePause
  19. echo %~1
  20. pause > nul && pause > nul
  21. GOTO :EOF
  22.  
  23. call phpunit tests/sometests.php
  24. cmd /k
Add Comment
Please, Sign In to add comment