mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
590abaf0ef
- Makes use of PHP's internal Web server to deliver expected responses from a real server - Windows batch file can be used to run tests (Linux and Mac test runners to come later) - Added PHPUnit to dev dependencies
10 lines
No EOL
314 B
Batchfile
10 lines
No EOL
314 B
Batchfile
@echo off
|
|
setlocal
|
|
set base=%~dp0
|
|
start php -S localhost:8000 "%base%\server.php"
|
|
php "%base%\..\vendor\phpunit\phpunit\phpunit" -c "%base%\phpunit.xml"
|
|
timeout /nobreak /t 1 >nul
|
|
for /f "usebackq tokens=5" %%a in (`netstat -aon ^| find "LISTENING" ^| find ":8000"`) do (
|
|
taskkill /pid %%a >nul
|
|
goto :eof
|
|
) |