006_Testing.sh 234 Bytes
Newer Older
据说甜蜜呢 committed
1 2 3 4
#!/bin/bash

set -e

据说甜蜜呢 committed
5
echo "[${Environment}]Begin testing..."
据说甜蜜呢 committed
6 7 8 9 10
declare dir='./test/ServicesTests' 
for prefix in `ls ${dir}|xargs -d '/'`
do
    dotnet test "${dir}/${prefix}/${prefix}.csproj"
done
据说甜蜜呢 committed
11
echo "[${Environment}]Test completed."