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

19
run-tests.sh Normal file
View File

@ -0,0 +1,19 @@
#!/bin/bash
# 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 ""
# Clean up the test container
docker-compose -f docker-compose.test.yml down