#!/bin/bash set -e
echo "[${Environment}]Begin testing..."
declare dir='./test/ServicesTests' for prefix in `ls ${dir}|xargs -d '/'` do dotnet test "${dir}/${prefix}/${prefix}.csproj" done
echo "[${Environment}]Test completed."