features/test/dotnet/install_dotnet_runtime.sh

16 lines
310 B
Bash
Raw Normal View History

2023-03-01 10:57:41 +03:00
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# some runtime installed
check "runtime" bash -c 'test "$(dotnet --list-runtimes | wc -l)" -gt 0'
# no sdk installed
check "no sdk" bash -c 'test "$(dotnet --list-sdks | wc -l)" -eq 0'
# Report result
reportResults