features/test/dotnet/install_dotnet_runtime.sh
2023-03-01 07:57:41 +00:00

16 lines
310 B
Bash

#!/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