blob: c28216572d721b80bf42c29841b1c5fd2a8806b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# Definition specific tests
check "version" java --version
echo "location"
echo $(whereis java)
# Report result
reportResults
|