setup tests for HelloWorldService

This commit is contained in:
2025-12-05 18:04:38 +01:00
parent 290131269e
commit c5c602d599
8 changed files with 625 additions and 3 deletions

20
run-tests.bat Normal file
View File

@ -0,0 +1,20 @@
@echo off
REM Script to run unit tests using Docker
echo ================================================================================
echo Running Unit Tests in Docker
echo ================================================================================
echo.
docker-compose -f docker-compose.test.yml up --build
echo.
echo ================================================================================
echo Test execution completed
echo ================================================================================
echo.
REM Clean up the test container
docker-compose -f docker-compose.test.yml down
pause